.page-privacy-policy {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-privacy-policy__hero-section {
    position: relative;
    text-align: center;
    padding-top: 20px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using main and auxiliary colors */
    color: #FFFFFF;
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 400px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/5; /* 1920:600 approximate ratio */
}

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

.page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-privacy-policy__hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

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

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

.page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: #2F6BFF; /* Main color for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D6E2FF; /* Border color */
    padding-bottom: 10px;
}

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

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

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

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

.page-privacy-policy__content-image {
    width: 100%;
    max-width: 800px; /* Max width for content images */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-privacy-policy__contact-button-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy__contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__link {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-privacy-policy__hero-image {
        aspect-ratio: 16/9; /* More standard aspect ratio for smaller screens */
        max-height: 300px;
    }

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

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

    .page-privacy-policy__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .page-privacy-policy__content-image {
        max-width: 100%; /* Ensure images don't overflow */
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__container {
        padding: 0 15px;
    }
    .page-privacy-policy__hero-section {
        padding-bottom: 30px;
    }
    .page-privacy-policy__content-section {
        padding: 30px 0;
    }
    .page-privacy-policy__content-image {
        max-width: 100%; /* Important for mobile overflow */
        height: auto; /* Important for mobile overflow */
    }
}

@media (max-width: 549px) {
    .page-privacy-policy__hero-section {
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .page-privacy-policy__section-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95rem;
    }
    .page-privacy-policy__contact-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}