/* style/privacy-policy.css */
.page-privacy-policy {
    color: #333333; /* Dark text on light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-privacy-policy__hero-section {
    background-color: #f0f0f0; /* Light background for the hero section */
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-privacy-policy__hero-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__hero-image {
    margin-bottom: 40px;
}

.page-privacy-policy__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    object-fit: cover; /* Ensure image covers the area without distortion */
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-privacy-policy__hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
}

.page-privacy-policy__cta-button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for contrast */
}

.page-privacy-policy__cta-button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-privacy-policy__cta-button--register {
    background-color: #000000; /* Primary color for register */
    color: #FFFFFF; /* Register button color */
}

.page-privacy-policy__cta-button--register:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff; /* White background for content */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-heading {
    font-size: 2.2em;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FCBC45; /* Highlight with accent color */
    padding-bottom: 10px;
}

.page-privacy-policy__sub-heading {
    font-size: 1.6em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #333333;
}

.page-privacy-policy__paragraph a {
    color: #FCBC45; /* Accent color for links in paragraph */
    text-decoration: none;
    font-weight: bold;
}

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

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

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

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

.page-privacy-policy__image-container {
    margin: 40px 0;
    text-align: center;
}

.page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
    object-fit: cover;
}

.page-privacy-policy__call-to-action {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__call-to-action-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Accent color for CTA title */
}

.page-privacy-policy__call-to-action-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__call-to-action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-title {
        font-size: 2em;
    }

    .page-privacy-policy__hero-description {
        font-size: 1em;
    }

    .page-privacy-policy__section-heading {
        font-size: 1.8em;
    }

    .page-privacy-policy__sub-heading {
        font-size: 1.4em;
    }

    .page-privacy-policy__hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-privacy-policy__cta-button {
        width: 100%;
        margin: 10px 0;
    }

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

    .page-privacy-policy__call-to-action-title {
        font-size: 2em;
    }

    .page-privacy-policy__call-to-action-description {
        font-size: 1em;
    }
    
    /* Mobile overflow prevention */
    .page-privacy-policy {
        max-width: 100%;
        overflow-x: hidden;
    }
    .page-privacy-policy__hero-section img,
    .page-privacy-policy__content-area img,
    .page-privacy-policy__image-container img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-heading {
        font-size: 1.6em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1.2em;
    }
}

/* Ensure no content area image is smaller than 200px */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
}