.page-privacy-policy {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* A common, clean font */
    line-height: 1.6;
    padding-bottom: 40px; /* Add some space at the bottom */
}

.page-privacy-policy__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #F4F7FB; /* Consistent with page background */
    text-align: center;
    padding-bottom: 40px;
}

.page-privacy-policy__hero-image-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden; /* Ensure image doesn't spill */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure images are not too small */
    min-width: 200px;
}

.page-privacy-policy__hero-content {
    max-width: 1200px; /* Max width for content */
    margin: 0 auto;
    padding: 20px;
}

.page-privacy-policy__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    font-size: clamp(2em, 4vw, 3em); /* Flexible font size for H1 */
    max-width: 900px; /* Constrain width for readability */
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-privacy-policy__container {
    max-width: 1000px; /* Slightly narrower for policy text readability */
    margin: 0 auto;
    padding: 0 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.page-privacy-policy__text-block {
    margin-bottom: 30px;
}

.page-privacy-policy__section-title {
    color: #2F6BFF; /* Primary color for section titles */
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-privacy-policy__list-item {
    margin-bottom: 8px;
}

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

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

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
    display: block; /* Remove extra space below img */
    margin: 0 auto; /* Center image */
}

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

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

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

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

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

    .page-privacy-policy__container {
        padding: 20px;
        margin: 0 15px; /* Smaller side margins for mobile */
    }

    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }

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

    /* Enforce image responsiveness and min size */
    .page-privacy-policy img {
        max-width: 100% !important; /* Important to override any other width */
        height: auto !important; /* Important to maintain aspect ratio */
        min-width: 200px; /* Still enforce min size */
        min-height: 200px; /* Still enforce min size */
    }
}