.page-privacy-policy {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Blend with main colors */
    padding-bottom: 40px; /* Space below the image before content */
}

.page-privacy-policy__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 600px; /* Cap height for hero image */
}

.page-privacy-policy__hero-content {
    max-width: 1200px;
    margin: 40px auto 0 auto; /* Margin above content, centered */
    padding: 0 20px;
    text-align: center;
    color: #FFFFFF; /* White text on blueish background */
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly reverse gradient on hover */
    transform: translateY(-2px);
}

.page-privacy-policy__cta-button--bottom {
    margin-top: 40px;
    margin-bottom: 60px;
}

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

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2F6BFF; /* Main color */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #D6E2FF; /* Border color */
    padding-bottom: 10px;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0; /* No top margin for the very first section title in the container */
}

.page-privacy-policy__sub-section-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-privacy-policy__list {
    list-style: disc;
    margin-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 {
    display: block;
    width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-privacy-policy__paragraph a,
.page-privacy-policy__list-item a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__paragraph a:hover,
.page-privacy-policy__list-item a:hover {
    text-decoration: underline;
    color: #000000; /* Darker on hover */
}

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

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

    .page-privacy-policy__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

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

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

    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__sub-section-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

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

    .page-privacy-policy__content-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: 200px; /* Still enforce minimum size, but allow scaling down */
        min-height: 200px; /* Still enforce minimum size */
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__container {
        padding: 15px;
    }
}