.page-privacy-policy {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    padding-bottom: 40px;
}

.page-privacy-policy__hero-section {
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding for the first section */
    background-color: #F4F7FB; /* Match page background */
    display: flex; /* Use flex for vertical stacking */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center content horizontally */
    padding-bottom: 40px; /* Add some space below the hero content */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between image and content */
}

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

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

.page-privacy-policy__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__content-area {
    padding: 20px 0;
    margin-top: 20px; /* Standard margin after hero section */
}

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

.page-privacy-policy__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-privacy-policy__paragraph {
    line-height: 1.7;
    margin-bottom: 15px;
    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: 8px;
    line-height: 1.6;
}

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

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 15px;
    margin-right: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-privacy-policy__button--primary {
    /* Specific styling for primary button if needed, but current gradient is primary */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__container,
    .page-privacy-policy__hero-content {
        max-width: 960px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        margin-top: 10px; /* Adjust margin for proper stacking */
    }

    .page-privacy-policy__content-area {
        margin-top: 20px; /* Standard margin */
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Clamp for h1 */
    }

    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }

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

    .page-privacy-policy__button {
        padding: 10px 20px;
        font-size: 0.9em;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
        /* Critical for mobile: */
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-content {
        margin-top: 5px; /* Adjust margin */
    }
    .page-privacy-policy__content-area {
        margin-top: 10px;
    }
    .page-privacy-policy__container,
    .page-privacy-policy__hero-content {
        padding: 10px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-privacy-policy__section-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__button {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}