/* style/privacy-policy.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Deep Red */
    --dark-bg: #1a1a1a; /* Dark Grey for background */
    --light-text: #f0f0f0; /* Light text for dark backgrounds */
    --dark-text: #333333; /* Dark text for light backgrounds */
    --border-color: #444444;
    --button-hover-bg: #a30000;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: var(--light-text);
    background-color: var(--dark-bg);
    line-height: 1.7;
}

.page-privacy-policy__hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%); /* Darker red gradient for hero */
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__hero-title {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.page-privacy-policy__hero-subtitle {
    font-size: 1.4em;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-privacy-policy__cta-button:hover {
    background: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--light-text);
}

.page-privacy-policy ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-privacy-policy ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--light-text);
}

.page-privacy-policy strong {
    color: var(--primary-color);
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

/* FAQ Section Specific Styles */
.page-privacy-policy__faq-section {
    background-color: #222222;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #333333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #444444;
    color: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
    background: #555555;
    border-color: var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #3a3a3a;
    color: var(--light-text);
}

.faq-answer p {
    margin: 0;
    padding: 15px 0;
    font-size: 1em;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 3em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1.2em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero {
        padding: 40px 15px;
        min-height: 300px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1em;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-privacy-policy__section {
        padding: 40px 0;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy p, .page-privacy-policy ul li {
        font-size: 0.95em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 1.8em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 2em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 0.9em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-privacy-policy ul {
        padding-left: 15px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
}