.page-privacy-policy__hero-section {
    background-color: #F4F7FB; /* Background color as per instructions */
    padding: 10px 0 40px; /* Small top padding, more bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px; /* Soften edges */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-privacy-policy__main-title {
    color: #1F2D3D; /* Text Main */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    font-size: clamp(2rem, 4.5vw, 3rem); /* Responsive font size */
}

.page-privacy-policy__description {
    color: #1F2D3D; /* Text Main */
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.page-privacy-policy__section-title {
    color: #1F2D3D; /* Text Main */
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0;
}

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

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

.page-privacy-policy__list-item {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

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

.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 */
}

.page-privacy-policy__cta-section {
    margin-top: 40px;
    padding: 30px;
    background-color: #F4F7FB; /* Background color for CTA block */
    border-radius: 8px;
    text-align: center;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-privacy-policy__cta-text {
    color: #1F2D3D; /* Text Main */
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 10px 0 30px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem); /* Adjusted for mobile, not too big */
    }

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

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

    .page-privacy-policy__section-title {
        font-size: 1.5rem;
        margin-top: 25px;
    }

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

    .page-privacy-policy__hero-image {
        max-width: 100%;
        height: auto;
    }

    /* Mobile content image constraint */
    .page-privacy-policy__content-section img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area does not cause horizontal scroll */
    .page-privacy-policy__content-section {
        overflow-x: hidden;
    }

    .page-privacy-policy__container {
        overflow-x: hidden;
    }
}