:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-dark: #08160F; /* Background */
    --bg-card: #11271B; /* Card BG */
    --text-main: #F2FFF6; /* Text Main */
    --text-secondary: #A7D9B8; /* Text Secondary */\    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green: #0A4B2C; /* Deep Green */
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
}

/* Base styles for the page */
.page-privacy-policy {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    padding: 60px 20px; /* Overall section padding */
    background-color: var(--deep-green); /* Background for the whole section */
    color: var(--text-main);
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and text */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    text-align: center;
}

.page-privacy-policy__hero-content h1 {
    font-size: clamp(2em, 4vw, 3.5em); /* Using clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.page-privacy-policy__hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Content Area */
.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--bg-dark); /* Ensure content area uses dark background */
    color: var(--text-main); /* Light text for dark background */
}

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

.page-privacy-policy__content-area h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__content-area p {
    margin-bottom: 15px;
}

.page-privacy-policy__content-area ul,
.page-privacy-policy__content-area ol {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-privacy-policy__content-area ol {
    list-style: decimal inside;
}

.page-privacy-policy__content-area li {
    margin-bottom: 8px;
}

/* Images within content */
.page-privacy-policy__content-image {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-main);
    background: var(--btn-gradient);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--glow-color);
}

.page-privacy-policy__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.page-privacy-policy__cta-button--secondary:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-section h2 {
    text-align: center;
    color: var(--gold-color);
    margin-bottom: 30px;
    font-size: 2.2em;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--divider-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-privacy-policy__faq-item details > summary {
    list-style: none;
    padding: 18px 25px;
    background-color: var(--deep-green);
    color: var(--text-main);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item details > summary::-webkit-details-marker {
    display: none;
}

.page-privacy-policy__faq-item details > summary:hover {
    background-color: var(--primary-color);
}

.page-privacy-policy__faq-question {
    font-size: 1.1em;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-privacy-policy__faq-answer {
    padding: 15px 25px;
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    border-top: 1px solid var(--divider-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content h1 {
        font-size: clamp(2em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-privacy-policy__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-privacy-policy__hero-content h1 {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-privacy-policy__hero-content p {
        font-size: 1em;
    }

    .page-privacy-policy__content-area,
    .page-privacy-policy__faq-section {
        padding: 30px 15px;
    }

    .page-privacy-policy__content-area h2 {
        font-size: 1.8em;
    }

    .page-privacy-policy__content-area h3 {
        font-size: 1.4em;
    }

    .page-privacy-policy__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__button-group {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-privacy-policy__faq-item details > summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-privacy-policy__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-privacy-policy__hero-content h1 {
        font-size: clamp(1.5em, 8vw, 2em);
    }

    .page-privacy-policy__content-area,
    .page-privacy-policy__faq-section {
        padding: 20px 10px;
    }

    .page-privacy-policy__content-area h2 {
        font-size: 1.6em;
    }

    .page-privacy-policy__content-area h3 {
        font-size: 1.2em;
    }

    .page-privacy-policy__faq-item details > summary {
        padding: 12px 15px;
    }
}