.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--bg-color, #08160F); /* Main background color */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, assuming body handles header offset */
    padding-bottom: 40px;
    background-color: var(--bg-color, #08160F);
}

.page-privacy-policy__hero-image-container {
    width: 100%;
    max-width: 1200px; /* Max width for the image container */
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Desktop default, but mobile will be contain */
    border-radius: 10px;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

/* Content Area */
.page-privacy-policy__content-area {
    padding: 40px 0;
    background-color: var(--bg-color, #08160F);
}

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

.page-privacy-policy__article {
    background-color: var(--card-bg, #11271B); /* Card BG color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--text-main, #F2FFF6);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid var(--divider-color, #1E3A2A);
    padding-bottom: 10px;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0;
}

.page-privacy-policy__sub-title {
    font-size: 1.6em;
    color: var(--glow-color, #57E38D); /* Using Glow for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    color: var(--text-secondary, #A7D9B8);
}

.page-privacy-policy__list-item strong {
    color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__image-wrapper {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.page-privacy-policy__link {
    color: var(--auxiliary-color, #22C768); /* Using auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: var(--glow-color, #57E38D);
    text-decoration: underline;
}

/* CTA Section */
.page-privacy-policy__cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--card-bg, #11271B);
    border-radius: 10px;
    margin-top: 40px;
}

.page-privacy-policy__cta-text {
    font-size: 1.5em;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 25px;
    font-weight: 600;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-privacy-policy__faq-list {
    margin-top: 40px;
    background-color: var(--card-bg, #11271B);
    border-radius: 10px;
    padding: 20px;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--deep-green, #0A4B2C); /* Deep Green for FAQ items */
}

.page-privacy-policy__faq-item:last-child {
    margin-bottom: 0;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-main, #F2FFF6);
    background-color: var(--deep-green, #0A4B2C); /* Deep Green for FAQ question background */
    user-select: none;
    list-style: none; /* For details/summary */
    outline: none; /* For details/summary */
}

/* Hide default details marker */
.page-privacy-policy__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-privacy-policy__faq-item summary::marker {
    display: none;
}

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
    color: var(--text-main, #F2FFF6);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 15px;
    color: var(--gold-color, #F2C14E); /* Gold for toggle icon */
}

.page-privacy-policy__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
    color: var(--text-secondary, #A7D9B8);
    line-height: 1.5;
    background-color: rgba(17, 39, 27, 0.8); /* Slightly lighter card BG for answer */
}

/* Details specific styling for open state */
.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
    background-color: var(--main-color, #11A84E); /* Main color when open */
    border-bottom: 1px solid var(--border-color, #2E7A4E);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    color: #ffffff; /* White for toggle when open */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-section {
        padding-bottom: 30px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    /* General content containers */
    .page-privacy-policy__container,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__hero-content,
    .page-privacy-policy__article,
    .page-privacy-policy__cta-section,
    .page-privacy-policy__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero Section */
    .page-privacy-policy__hero-section {
        flex-direction: column;
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 20px;
    }
    .page-privacy-policy__hero-image {
        object-fit: contain !important; /* Prevent cropping on mobile */
        max-height: none !important; /* Remove max-height */
        aspect-ratio: unset !important; /* Remove aspect ratio if any */
        width: 100% !important;
        height: auto !important;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 15px;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Content Area */
    .page-privacy-policy__content-area {
        padding: 20px 0;
    }
    .page-privacy-policy__article {
        padding: 20px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__image-wrapper {
        margin: 20px 0;
    }
    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* CTA Section */
    .page-privacy-policy__cta-section {
        padding: 30px 15px;
        margin-top: 30px;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__btn-primary {
        padding: 12px 20px;
        font-size: 1em;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* FAQ Section */
    .page-privacy-policy__faq-list {
        margin-top: 20px;
        padding: 15px;
    }
    .page-privacy-policy__faq-question {
        padding: 12px 15px;
        font-size: 1em;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 1.3em;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 15px 12px;
        font-size: 0.9em;
    }

    /* Ensure all content area images are responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}