:root {
    --page-bg: #08160F; /* Background */
    --card-bg: #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 */
    --primary-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --primary-color: #11A84E; /* Main tone */
    --secondary-color: #22C768; /* Aux tone */
}

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

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px; /* Adjust padding-top to be small, body padding-top handles header offset */
    background-color: var(--deep-green); /* A slightly different dark green for hero */
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Using clamp for H1 */
    font-weight: 700;
    color: var(--glow-color); /* Highlight H1 with glow color */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-privacy-policy__hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--page-bg); /* Use main page background */
    border-top: 1px solid var(--divider-color);
}

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

.page-privacy-policy__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-main);
    margin-top: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.page-privacy-policy__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-privacy-policy__text-block p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-privacy-policy__text-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-privacy-policy__text-block ul li {
    margin-bottom: 8px;
    color: var(--text-main);
}

.page-privacy-policy__text-block a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-privacy-policy__text-block a:hover {
    color: var(--gold-color);
}

.page-privacy-policy__contact-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
}

.page-privacy-policy__contact-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    background-color: var(--card-bg); /* Use card background for FAQ section */
    padding: 60px 20px;
    border-top: 1px solid var(--divider-color);
}

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

.page-privacy-policy__faq-item {
    background-color: var(--deep-green); /* Slightly different dark green for FAQ item background */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

.page-privacy-policy__faq-item summary {
    list-style: none; /* Remove default marker */
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-main);
    background-color: var(--deep-green); /* Ensure summary background matches item */
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for WebKit browsers */
}

.page-privacy-policy__faq-question {
    flex-grow: 1;
    color: var(--text-main);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    background-color: var(--card-bg); /* Answer background */
}

.page-privacy-policy__faq-answer p {
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* CTA Section */
.page-privacy-policy__cta-section {
    background-color: var(--deep-green); /* Use a prominent dark green for CTA */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--divider-color);
}

.page-privacy-policy__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__cta-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-privacy-policy__btn-primary {
    background: var(--primary-btn-gradient);
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-privacy-policy__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--deep-green); /* Dark text on glow background */
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }
    .page-privacy-policy__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
    .page-privacy-policy__sub-title {
        font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    }
}

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

    .page-privacy-policy__hero-image {
        margin-top: 20px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
    }

    .page-privacy-policy__hero-description {
        font-size: 1rem;
    }

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

    .page-privacy-policy__container,
    .page-privacy-policy__faq-list,
    .page-privacy-policy__cta-content {
        padding-left: 0;
        padding-right: 0;
    }

    .page-privacy-policy__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .page-privacy-policy__sub-title {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__text-block ul {
        margin-left: 20px;
    }

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

    .page-privacy-policy__faq-toggle {
        font-size: 1.5rem;
    }

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
    }

    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Images responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !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;
    }
}

/* Ensure no filter on images */
.page-privacy-policy img {
    filter: none !important;
}

/* Ensure content area image CSS size lower bound (>= 200px) */
.page-privacy-policy__content-area img,
.page-privacy-policy__text-block img {
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__video-section {
    padding-top: 10px !important; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
}

.page-privacy-policy__video,
.page-privacy-policy video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.page-privacy-policy__video-section,
.page-privacy-policy__video-container,
.page-privacy-policy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
}