/* style/privacy-policy.css */

:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--dark-bg-1); /* Inherited from shared.css, assuming dark background */
}

.page-privacy-policy__hero-banner {
    position: relative;
    width: 100%;
    padding: 120px 20px 60px; /* Adjusted padding-top for fixed header */
    background: linear-gradient(135deg, var(--primary-color), #001f4d); /* Dark blue gradient */
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold title */
}

.page-privacy-policy__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color); /* Gold button */
    color: var(--primary-color); /* Dark blue text */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background: #e6b800; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--secondary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.page-privacy-policy__cta-button--secondary:hover {
    background: #001f4d;
    border-color: #e6b800;
}

.page-privacy-policy__content-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.page-privacy-policy__content-area {
    background-color: #ffffff; /* White background for content */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.page-privacy-policy__section-title--light {
    color: var(--secondary-color);
}

.page-privacy-policy__sub-section-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    font-size: 1.05em;
}

.page-privacy-policy__list li {
    margin-bottom: 0.5em;
}

.page-privacy-policy__link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #004499;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__faq-section {
    padding: 60px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff; /* White background for FAQ items */
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-privacy-policy__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-privacy-policy__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-privacy-policy__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

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

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    text-align: left;
    color: var(--text-dark);
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.page-privacy-policy__faq-answer p {
    margin-bottom: 0.8em;
    font-size: 1.0em;
}

.page-privacy-policy__cta-wrapper {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1.2em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__content-area {
        padding: 30px;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-banner {
        padding-top: 100px !important; /* Mobile padding-top for fixed header */
        padding-bottom: 40px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1em;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy__content-section {
        padding: 40px 15px;
    }
    .page-privacy-policy__content-area {
        padding: 25px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-privacy-policy p, .page-privacy-policy__list li {
        font-size: 0.95em;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__faq-section {
        padding: 40px 15px;
    }
    .page-privacy-policy__faq-question {
        padding: 15px 20px;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 1em;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
        margin-left: 15px;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 20px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 15px 20px !important;
    }
    .page-privacy-policy__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 0.9em;
    }
    .page-privacy-policy__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.1em;
    }
    .page-privacy-policy__content-area {
        padding: 15px;
    }
    .page-privacy-policy p, .page-privacy-policy__list li, .page-privacy-policy__faq-answer p {
        font-size: 0.9em;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 0.95em;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
}