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

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

.page-privacy-policy__hero-section {
    position: relative;
    background-color: #2F6BFF; /* Primary color as a base */
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* Space between image and text */
}

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

.page-privacy-policy__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: #FFFFFF; /* White text for hero section */
}

.page-privacy-policy__main-title {
    color: #FFFFFF; /* White text for hero section */
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 600px; /* Constrain title width */
    margin: 0 auto 15px auto;
    /* No fixed font-size for h1, rely on clamp if needed, but not fixed large values */
}

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

.page-privacy-policy__content-area {
    padding: 40px 0;
    background-color: #F4F7FB; /* Background */
}

.page-privacy-policy__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    /* HTML width/height attributes for layout, CSS for responsiveness */
}

.page-privacy-policy__contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping inside button */
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF; /* White text for buttons */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px; /* Ensure button is not too small */
}

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

.page-privacy-policy__button--secondary {
    background: #6FA3FF; /* Auxiliary color for secondary button */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__button--secondary:hover {
    background: #5a92e6; /* Slightly darker on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

    .page-privacy-policy__hero-image-wrapper {
        max-height: 400px;
    }

    .page-privacy-policy__hero-image {
        min-height: 250px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Use clamp for H1 */
        max-width: 90%;
    }

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

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

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

    .page-privacy-policy__image {
        max-width: 100%; /* Ensure images are responsive */
        height: auto;
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }

    .page-privacy-policy__contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 250px; /* Limit button width on mobile */
    }

    /* Enforce image size for content area, prevent smaller than 200px */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure no content images are smaller than 200px, regardless of specific class */
.page-privacy-policy img {
    /* These are minimums, actual display size might be larger due to width: 100% / max-width */
    min-width: 200px;
    min-height: 200px;
}