.page-privacy-policy {
    background-color: #F4F7FB; /* Background color as per custom config */
    color: #1F2D3D; /* Text Main color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px; /* Small top padding, body will handle header offset */
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using main/aux colors for gradient background behind image */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding for hero section */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure image wrapper can scale */
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Space between image and content */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px; /* Max width for display, HTML width/height is 1200x675 */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    /* Text color for contrast */
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Using clamp for H1, no fixed large value */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000; /* Changed for contrast: Custom Color_1776249996415 */
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #1F2D3D; /* Changed for contrast: Text Main */
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #1F2D3D; /* Changed for contrast: Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #FFFFFF; /* Card BG color */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.page-privacy-policy__section-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000; /* Changed for contrast: Custom Color_1776249996415 */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #D6E2FF; /* Border color */
    padding-bottom: 5px;
}

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

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

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

.page-privacy-policy__content-image {
    width: 100%;
    max-width: 800px; /* Matches HTML width for display */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__inline-link {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-privacy-policy__contact-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #1F2D3D; /* Changed for contrast: Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-privacy-policy__section-heading {
        font-size: 1.5rem;
    }

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

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

    /* Enforce responsive image behavior for content images */
    .page-privacy-policy__content-image,
    .page-privacy-policy__hero-image {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not displayed smaller than 200px,
       but this media query mainly ensures they fit the screen.
       The general rule for min-width: 200px is already applied. */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}