/* style/privacy-policy.css */

:root {
    --primary-color: #1A1A1A;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --border-color: #e0e0e0;
    --padding-section: 60px 20px;
    --max-width-content: 1200px;
}

.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default for dark body background */
    background-color: var(--primary-color);
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding: var(--padding-section);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: calc(var(--header-offset, 120px) + 60px); /* Adjust for header if needed, but assuming shared handles body padding */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-privacy-policy__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
}

.page-privacy-policy__btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-privacy-policy__btn-primary:hover {
    background-color: #e6c200;
    color: var(--primary-color);
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-right: 15px;
}

.page-privacy-policy__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

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

.page-privacy-policy__container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

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

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-privacy-policy__list-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-privacy-policy__list-item a:hover {
    text-decoration: underline;
}

.page-privacy-policy__button-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--padding-section);
}

.page-privacy-policy__section-title--faq {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-privacy-policy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #2a2a2a;
    color: var(--text-light);
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: #3a3a3a;
}

.page-privacy-policy__faq-heading {
    margin: 0;
    color: var(--text-light);
    font-size: 1em; /* Relative to parent .faq-question font-size */
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #1A1A1A;
    color: #cccccc;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px !important;
}

/* General link styling within content */
.page-privacy-policy__content-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__content-section a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: calc(var(--header-offset, 120px) + 30px) !important; /* Adjust for mobile header offset */
        min-height: 300px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__button-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .page-privacy-policy__btn-secondary {
        margin-right: 0;
    }

    /* Images and Videos Responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__container,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__content-section,
    .page-privacy-policy__faq-section,
    .page-privacy-policy__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
    .page-privacy-policy__cta-button,
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-privacy-policy__button-group {
        flex-wrap: wrap !important;
        gap: 10px;
    }
}