.page-privacy-policy {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #2F6BFF; /* Main Color */
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    padding-bottom: 40px; /* Space below content */
}

.page-privacy-policy__image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum image size */
}

.page-privacy-policy__hero-content {
    text-align: center;
    padding: 20px 20px 0;
    max-width: 900px;
    color: #FFFFFF; /* White text on blue background */
}

.page-privacy-policy__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF; /* White text */
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Example clamp for responsiveness */
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #F4F7FB; /* Lighter text for description */
}

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

.page-privacy-policy__container {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__last-updated {
    font-size: 0.9em;
    color: #6FA3FF; /* Auxiliary color for subtle text */
    text-align: right;
    margin-bottom: 30px;
}

.page-privacy-policy__heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2F6BFF; /* Main Color */
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

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

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

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

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

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

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

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Lighter gradient on hover */
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
    transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-bottom: 20px;
    }

    .page-privacy-policy__hero-content {
        padding: 15px;
    }

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

    .page-privacy-policy__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

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

    .page-privacy-policy__heading {
        font-size: 1.5rem;
        margin-top: 30px;
    }

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

    /* Enforce image sizing for mobile to prevent overflow */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }
    
    /* Global img rule for content area within privacy-policy */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}