.page-privacy-policy {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --bg-card: #17191F;
    --bg-main: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;

    color: var(--text-main); /* Default text color for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-main);
}

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

.page-privacy-policy__section-padding {
    padding: 60px 0;
}

.page-privacy-policy__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__hero-content {
    padding: 40px 20px;
    max-width: 800px;
    z-index: 1;
    position: relative;
    margin-top: -100px; /* Pull content slightly over the image for visual flow, but not *on* the image */
    background-color: var(--bg-main);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 3.5vw, 3em);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.page-privacy-policy__text-block {
    font-size: 1em;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-privacy-policy__list {
    list-style: disc inside;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-left: 20px;
}

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

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

.page-privacy-policy__dark-section {
    background-color: var(--bg-card);
    padding: 60px 0;
}

.page-privacy-policy__dark-section .page-privacy-policy__section-title,
.page-privacy-policy__dark-section .page-privacy-policy__text-block,
.page-privacy-policy__dark-section .page-privacy-policy__list-item,
.page-privacy-policy__dark-section .page-privacy-policy__list {
    color: var(--text-main);
}

.page-privacy-policy a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: var(--primary-color);
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-main);
}

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

/* FAQ Section */
.page-privacy-policy__faq-section {
    background-color: var(--bg-card);
    padding: 60px 0;
}

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

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

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1em;
    user-select: none;
    list-style: none; /* Remove default marker for details summary */
}

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

.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[open] .page-privacy-policy__faq-toggle {
    transform: rotate(45deg); /* Change '+' to 'x' or similar */
}

.page-privacy-policy__faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--text-main);
    font-size: 1em;
    line-height: 1.5;
}

.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        margin-top: -80px;
        padding: 30px 15px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__section-padding {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-privacy-policy__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    }
    .page-privacy-policy__hero-image-wrapper {
        max-height: 300px;
    }
    .page-privacy-policy__hero-content {
        margin-top: -60px;
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 7vw, 2.2em) !important; /* Adjust font size for mobile */
        line-height: 1.3;
    }
    .page-privacy-policy__hero-description {
        font-size: 0.95em;
    }
    
    /* 通用图片与容器 */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset; /* Allow smaller images if needed */
        min-height: unset;
    }
    .page-privacy-policy__container,
    .page-privacy-policy__introduction-section,
    .page-privacy-policy__info-collection-section,
    .page-privacy-policy__info-usage-section,
    .page-privacy-policy__info-sharing-section,
    .page-privacy-policy__data-security-section,
    .page-privacy-policy__your-rights-section,
    .page-privacy-policy__cookies-section,
    .page-privacy-policy__third-party-links-section,
    .page-privacy-policy__policy-changes-section,
    .page-privacy-policy__contact-section,
    .page-privacy-policy__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* 按钮与按钮容器 */
    .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: 12px 20px !important;
        font-size: 1em !important;
    }

    /* 其他内容模块 */
    .page-privacy-policy__section-padding {
        padding: 30px 0 !important;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em !important;
        margin-bottom: 20px;
    }
    .page-privacy-policy__text-block,
    .page-privacy-policy__list-item,
    .page-privacy-policy__faq-answer p {
        font-size: 0.95em !important;
    }
    .page-privacy-policy__list {
        padding-left: 15px;
    }
    .page-privacy-policy__faq-question {
        font-size: 1em !important;
        padding: 15px;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-privacy-policy__contact-item {
        font-size: 1em;
    }
}