/* style/privacy-policy.css */
.page-privacy-policy {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif; /* Roboto气质 - Arial作为通用无衬线 */
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

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

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

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 40px 0;
}

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

.page-privacy-policy__section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.page-privacy-policy__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: 600;
}

.page-privacy-policy__section-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-privacy-policy__card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-privacy-policy__card-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy__card-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
    flex-grow: 1; /* Allow text to grow */
}

.page-privacy-policy__card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    object-fit: cover;
    min-width: 200px; /* Minimum size for all images */
    min-height: 200px; /* Minimum size for all images */
}

.page-privacy-policy__link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #2AD16F;
    text-decoration: underline;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    margin-top: 20px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-privacy-policy__button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-privacy-policy__button--contact {
    align-self: center; /* Center button within card if needed */
}

.page-privacy-policy__call-to-action {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-privacy-policy__cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-privacy-policy__cta-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        padding: 0 15px;
    }

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

    .page-privacy-policy__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .page-privacy-policy__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .page-privacy-policy__card-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .page-privacy-policy__card-title {
        font-size: 1.3rem;
    }

    .page-privacy-policy__card-text {
        font-size: 0.95rem;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 300px; /* Limit button width on small screens */
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile content area image overflow prevention */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-section {
        padding-bottom: 20px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-privacy-policy__section-intro {
        margin-bottom: 30px;
    }
    .page-privacy-policy__call-to-action {
        padding: 30px 20px;
    }
}

/* Ensure no image filter is applied */
.page-privacy-policy img {
    filter: none !important;
}

/* Ensure content area images are not too small by CSS */
/* This rule targets all images within the main content area of the privacy policy page */
.page-privacy-policy__content-section img,
.page-privacy-policy__card-image {
    min-width: 200px; /* Enforce minimum width via CSS */
    min-height: 200px; /* Enforce minimum height via CSS */
    max-width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
}