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

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    justify-content: center;
    padding: 10px 0 40px; /* Small top padding, more bottom padding */
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient as hero background for consistency */
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 1200px; /* Example display width for hero */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-privacy-policy__description {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

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

.page-privacy-policy__section {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-privacy-policy__section-title {
    font-size: 2rem;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #D6E2FF;
    padding-bottom: 10px;
}

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

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 800px; /* Example display width for content image */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

.page-privacy-policy__paragraph a:hover,
.page-privacy-policy__list-item a:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Auxiliary Color */
}

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

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

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

    .page-privacy-policy__section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and don't overflow */
    }

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

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

/* Ensure color contrast for links */
.page-privacy-policy a {
    color: #2F6BFF; /* Main color for links, ensure contrast */
}
.page-privacy-policy a:hover {
    color: #6FA3FF; /* Auxiliary color for hover, ensure contrast */
}