.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #100224; /* Consistent dark background as per WOW88 style */
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as per rules */
    background-color: #100224;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5;
    max-height: 375px; /* Limit height for hero image to prevent it from being too large on desktop */
}

.page-privacy-policy__hero-content {
    padding: 20px 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-privacy-policy__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Using clamp for responsive H1 */
    font-weight: bold;
    margin-bottom: 15px;
    color: #26A9E0; /* Primary color for title */
    line-height: 1.2;
}

.page-privacy-policy__intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-privacy-policy__last-updated {
    font-size: 0.9rem;
    color: #BBBBBB;
}

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

.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-privacy-policy__section-title {
    font-size: 2rem;
    color: #26A9E0; /* Primary color for section titles */
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-privacy-policy p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-privacy-policy__list li {
    margin-bottom: 10px;
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
    object-fit: cover;
}

.page-privacy-policy__contact-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__contact-button:hover {
    background-color: #D46F06;
}

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

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

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

    .page-privacy-policy__hero-image,
    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }

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

    .page-privacy-policy__content-section {
        padding: 20px 15px;
    }

    .page-privacy-policy__contact-button {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }

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

    .page-privacy-policy__list {
        margin-left: 15px;
    }
}

/* Ensure content area images are not too small on desktop */
.page-privacy-policy__content-image {
    min-width: 200px;
    min-height: 200px;
}