/* style/privacy-policy.css */

.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: #FFFFFF; /* Auxiliary color for text on dark background */
    background-color: #100224; /* Dark background as per WOW88 style, overriding default #FFFFFF */
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #100224; /* Consistent dark background */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Ensure image doesn't break layout */
    margin-bottom: 30px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height on larger screens */
}

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

.page-privacy-policy__main-title {
    font-size: clamp(2rem, 4vw, 3.2rem); /* Responsive font size, max 3.2rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #26A9E0; /* Primary color for main title */
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__contact-button {
    display: inline-block;
    background-color: #26A9E0; /* Primary color for button */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Ensure button has decent size */
}

.page-privacy-policy__contact-button:hover {
    background-color: #1a7fb2; /* Slightly darker shade on hover */
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 40px 0;
    background-color: #1c0338; /* Slightly lighter dark background for content */
}

.page-privacy-policy__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-privacy-policy__article {
    background-color: #26054a; /* Card-like background for article content */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem); /* Responsive font size */
    font-weight: 600;
    color: #26A9E0; /* Primary color for section titles */
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #f0f0f0; /* Light text for readability */
}

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

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

.page-privacy-policy__list-item strong {
    color: #26A9E0; /* Highlight important terms */
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
}

.page-privacy-policy__paragraph a {
    color: #26A9E0; /* Primary color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__paragraph a:hover {
    color: #1a7fb2; /* Darker on hover */
}

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

.page-privacy-policy__support-button:hover {
    background-color: #c46606; /* Darker on hover */
}

.page-privacy-policy__effective-date {
    margin-top: 30px;
    font-style: italic;
    font-size: 0.95rem;
    color: #b0b0b0;
}

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

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem); /* Adjust H1 for smaller screens */
    }

    .page-privacy-policy__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-privacy-policy__contact-button,
    .page-privacy-policy__support-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-privacy-policy__content-section {
        padding: 30px 0;
    }

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

    .page-privacy-policy__section-title {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem); /* Adjust H2 for smaller screens */
        margin-top: 25px;
        margin-bottom: 15px;
    }

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

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

    /* CRITICAL: Mobile content image overflow prevention */
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
    }
}