.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Defaults to #F2FFF6, will be overridden for light backgrounds if needed */
    background-color: var(--background); /* Defaults to #08160F, from shared.css body */
}

/* Ensure text on light backgrounds is dark, and on dark backgrounds is light */
.page-privacy-policy__content-section {
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-privacy-policy__content-section:nth-of-type(even) {
    background-color: var(--card-bg); /* #11271B */
    color: var(--text-main); /* #F2FFF6 */
}

.page-privacy-policy__content-section:nth-of-type(odd) {
    background-color: #ffffff;
    color: #333333;
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
    background-color: var(--background); /* Ensure consistent background */
    overflow: hidden;
    box-sizing: border-box;
}

.page-privacy-policy__hero-image-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: -150px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    color: var(--text-main);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        margin-top: 20px;
        background: var(--card-bg);
        padding: 20px;
        box-shadow: none;
    }
    .page-privacy-policy__hero-section {
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
    }
}

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

.page-privacy-policy__main-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--glow);
}

.page-privacy-policy__intro-text {
    font-size: clamp(16px, 2vw, 19px);
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-privacy-policy__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--glow);
}

.page-privacy-policy__content-section:nth-of-type(odd) .page-privacy-policy__section-title {
    color: var(--deep-green);
}

.page-privacy-policy__sub-section-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--gold);
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 17px;
    color: inherit;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 17px;
    color: inherit;
}

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

/* CTA Button Styles */
.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-privacy-policy__cta-button--secondary {
    background: var(--card-bg);
    border: 2px solid var(--deep-green);
    color: var(--text-main);
}

.page-privacy-policy__cta-button--secondary:hover {
    background: var(--deep-green);
    border-color: var(--glow);
    color: var(--glow);
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding: 60px 20px;
    background-color: var(--background);
    color: var(--text-main);
    box-sizing: border-box;
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
}

.page-privacy-policy__faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__faq-item summary {
    list-style: none;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    color: var(--text-main);
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--divider);
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item summary:hover {
    background-color: var(--deep-green);
}

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

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

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

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

.page-privacy-policy__faq-answer {
    padding: 20px 25px;
    font-size: 16px;
    color: var(--text-secondary);
}

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

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

    .page-privacy-policy__container {
        padding: 0;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-privacy-policy__hero-image-container,
    .page-privacy-policy__content-section,
    .page-privacy-policy__faq-section,
    .page-privacy-policy__image-container { /* General containers for images */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Mobile button responsiveness */
    .page-privacy-policy__cta-button,
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
        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__hero-content .page-privacy-policy__cta-button {
        margin-top: 20px;
    }

    /* Adjust padding for hero section on mobile */
    .page-privacy-policy__hero-section {
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .page-privacy-policy__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__intro-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-section-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__faq-item summary {
        font-size: 17px;
        padding: 15px 20px;
    }

    .page-privacy-policy__faq-answer {
        padding: 15px 20px;
        font-size: 15px;
    }
}