.page-privacy-policy {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px; /* Small bottom padding for main content */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding for the first section, relying on body padding for header offset */
    padding-bottom: 40px;
    background-color: #2F6BFF; /* Main color for hero background */
    color: #FFFFFF;
    text-align: center;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
}

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

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 20px;
    margin-top: 20px; /* Space between image and content */
}

.page-privacy-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 100%;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-size: clamp(2rem, 5vw, 3.5rem); /* Using clamp for responsive H1 */
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #D6E2FF;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1rem;
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F4F7FB;
}

.page-privacy-policy__container {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF;
}

.page-privacy-policy__section-heading {
    color: #2F6BFF;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #D6E2FF;
    padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__list-item strong {
    color: #000000;
}

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

.page-privacy-policy__paragraph a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__paragraph a:hover {
    text-decoration: underline;
}

.page-privacy-policy__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.page-privacy-policy__back-home-button,
.page-privacy-policy__responsible-gaming-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D6E2FF;
    font-size: 1rem;
}

.page-privacy-policy__back-home-button {
    background-color: #6FA3FF;
    color: #FFFFFF;
}

.page-privacy-policy__back-home-button:hover {
    background-color: #2F6BFF;
    transform: translateY(-2px);
}

.page-privacy-policy__responsible-gaming-button {
    background-color: #FFFFFF;
    color: #2F6BFF;
}

.page-privacy-policy__responsible-gaming-button:hover {
    background-color: #F4F7FB;
    transform: translateY(-2px);
}

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

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

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

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

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

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

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

    .page-privacy-policy__cta-button,
    .page-privacy-policy__back-home-button,
    .page-privacy-policy__responsible-gaming-button {
        width: 100%;
        max-width: 300px;
    }

    .page-privacy-policy__button-group {
        flex-direction: column;
        align-items: center;
    }
}