.page-privacy-policy {
    background-color: #0A0A0A; /* --background */
    color: #FFF6D6; /* --text-main */
    font-family: Arial, sans-serif; /* Roboto气质，用Arial兜底 */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, body handles --header-offset */
}

.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    max-width: 1200px; /* Max width for image display */
    margin: 0 auto; /* Center image */
}

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

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for h1 font-size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF6D6; /* --text-main */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 246, 214, 0.85); /* Slightly lighter text for description */
}

.page-privacy-policy__content-section {
    padding: 40px 20px;
}

.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #111111; /* --card-bg */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* --border */
}

.page-privacy-policy__last-updated {
    text-align: right;
    font-size: 0.9em;
    color: rgba(255, 246, 214, 0.6);
    margin-bottom: 30px;
}

.page-privacy-policy__section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: #FFF6D6; /* --text-main */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #3A2A12; /* --border */
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #FFF6D6; /* --text-main */
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #FFF6D6; /* --text-main */
}

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

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

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

.page-privacy-policy__link {
    color: #FFD36B; /* --glow */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    text-decoration: underline;
    color: #FFD86A; /* Lighter shade of glow */
}

.page-privacy-policy__cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* --button-gradient */
    color: #111; /* Dark text on light button */
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 150px; /* Ensure buttons are not too small */
}

.page-privacy-policy__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-privacy-policy__button--secondary {
    background: linear-gradient(180deg, #3A2A12 0%, #111111 100%); /* A darker gradient for secondary button */
    color: #FFF6D6; /* --text-main */
    border: 1px solid #3A2A12;
}

.page-privacy-policy__button--secondary:hover {
    background: linear-gradient(180deg, #4A3A22 0%, #222222 100%);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-privacy-policy__hero-image-wrapper {
        margin-bottom: 15px;
    }

    .page-privacy-policy__hero-image {
        max-width: 100%;
        height: auto;
    }

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

    .page-privacy-policy__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-privacy-policy__container {
        padding: 15px;
    }

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

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95rem;
    }

    .page-privacy-policy__image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        margin: 20px auto;
        min-width: 200px; /* Maintain min size for content images */
        min-height: 200px;
    }

    .page-privacy-policy__cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 280px; /* Limit button width on smaller screens */
        padding: 10px 20px;
    }
}

/* Ensure content area images maintain minimum size via CSS */
.page-privacy-policy__content-section img {
    min-width: 200px;
    min-height: 200px;
}
@media (max-width: 768px) {
    .page-privacy-policy__content-section img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce min size */
        min-height: 200px;
    }
}