.page-privacy-policy {
    background-color: #140C0C; /* Background color */
    color: #FFF1E8; /* Main text color */
    padding-bottom: 40px; /* Add some bottom padding */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 10px; /* Small top padding, rely on body for header offset */
}

.page-privacy-policy__hero-image-container {
    width: 100%;
    overflow: hidden;
}

.page-privacy-policy__hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* Approx 1920x600 */
    object-fit: cover;
    object-position: center;
    filter: none; /* No color filters */
}

.page-privacy-policy__hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    text-align: center;
}

.page-privacy-policy__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF1E8;
    max-width: 900px;
    margin: 0 auto 15px auto;
    font-size: clamp(1.8rem, 4vw + 1rem, 3rem); /* Single clamp for H1 */
}

.page-privacy-policy__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #FFF1E8;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-privacy-policy__container {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border color */
    border-radius: 8px;
    padding: 30px;
}

.page-privacy-policy__section-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #F3C54D; /* Gold accent for titles */
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.page-privacy-policy__section-title:first-of-type {
    margin-top: 0; /* No top margin for the very first section title */
}

.page-privacy-policy__paragraph {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #FFF1E8;
}

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

.page-privacy-policy__list-item {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #FFF1E8;
}

.page-privacy-policy__list-item strong {
    color: #F3C54D; /* Gold for strong text in list items */
}

.page-privacy-policy__container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Ensure no filters are applied */
    width: 800px; /* Base width for non-hero images */
    min-width: 200px; /* Ensure minimum size */
}

/* Ensure content area images are not too small as per rules */
.page-privacy-policy__content-section .page-privacy-policy__container img {
    min-width: 200px;
    min-height: 200px;
}


.page-privacy-policy__link {
    color: #FFB04A; /* Button start gradient color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #D86A14; /* Button end gradient color for link hover */
    text-decoration: none;
}

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

    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem); /* Adjust H1 for smaller screens within the clamp range */
    }

    .page-privacy-policy__description {
        font-size: 0.95em;
    }

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

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

    .page-privacy-policy__section-title {
        font-size: 1.5em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.9em;
    }

    /* Mobile content area images */
    .page-privacy-policy__content-section img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure no selector within .page-privacy-policy makes img display smaller than 200px */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
}
/* Override for hero image to allow smaller height on mobile if aspect ratio dictates */
.page-privacy-policy__hero-image-container img {
    min-height: unset; /* Hero image height is controlled by aspect-ratio and width:100% */
}