.page-privacy-policy__hero-section {
    padding-top: 10px; /* Small top padding as per rule */
    background-color: #F4F7FB; /* Background color from custom scheme */
    color: #1F2D3D; /* Text color from custom scheme */
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin: 0 auto;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px; /* Slight round for aesthetics */
}

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

.page-privacy-policy__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    /* No fixed font-size, rely on weight, line-height, etc. */
    font-size: clamp(2rem, 4vw, 3rem); /* Example clamp, ensuring it's not too big */
}

.page-privacy-policy__description {
    font-size: 1.125rem; /* 18px */
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-privacy-policy__content-section {
    background-color: #F4F7FB; /* Background color from custom scheme */
    padding: 60px 0;
    color: #1F2D3D; /* Text Main */
}

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

.page-privacy-policy__section-title {
    font-size: 2rem; /* 32px */
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-privacy-policy__paragraph {
    font-size: 1rem; /* 16px */
    line-height: 1.7;
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

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

.page-privacy-policy__list-item {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__list-item strong {
    color: #000000; /* Custom Color_1776249996415 for emphasis */
}

.page-privacy-policy__contact-link {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: 500;
}

.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Auxiliary color on hover */
}

.page-privacy-policy__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-privacy-policy__content-image {
    width: 100%;
    max-width: 800px; /* Example max-width for content images */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

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

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

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

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

    .page-privacy-policy__section-title {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.9375rem; /* 15px */
    }

    /* Mobile image rules */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size is still met */
        min-height: 200px; /* Ensure minimum size is still met */
    }
}

/* Ensure images within content sections adhere to min-size and no filter rules */
.page-privacy-policy img {
    filter: none; /* Explicitly disable any potential filter */
}

/* Content area images CSS dimensions lower bound */
.page-privacy-policy__content-area img,
.page-privacy-policy__content-section img {
    min-width: 200px;
    min-height: 200px;
    /* Using max-width: 100% and height: auto; will respect the min-width/height when content is larger */
}