/* style/privacy-policy.css */

.page-privacy-policy {
    /* Ensures content starts below the fixed header on desktop and mobile */
    padding-top: var(--header-offset, 120px); 
    background-color: #FFFFFF; /* Light background for the page content */
    color: #333333; /* Dark text for readability on light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    background-color: #000000; /* Dark background for hero section */
    color: #FFFFFF; /* Light text on dark background */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Highlight with a vibrant color */
}

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

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

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 180px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-privacy-policy__button--register {
    background-color: #FCBC45; /* Login color for register button */
    color: #000000; /* Dark text */
    border: 2px solid #FCBC45;
}

.page-privacy-policy__button--register:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.page-privacy-policy__button--login {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-privacy-policy__button--login:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.page-privacy-policy__content-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

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

.page-privacy-policy__content-heading {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__sub-heading {
    font-size: 1.8em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy__content-paragraph {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333333;
}

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

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

.page-privacy-policy__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    text-decoration: underline;
    color: #FCBC45; /* Keep the color consistent or slightly darker */
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Constrain image width within content */
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* No filter properties to change image colors */
}

.page-privacy-policy__contact-info {
    margin-top: 30px;
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.page-privacy-policy__contact-text {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333333;
}

.page-privacy-policy__cta-section {
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* Light text */
    padding: 80px 20px;
    text-align: center;
}

.page-privacy-policy__cta-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FCBC45;
    font-weight: bold;
}

.page-privacy-policy__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-privacy-policy__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-privacy-policy__button--primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

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

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

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

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

    .page-privacy-policy__hero-actions,
    .page-privacy-policy__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 300px; /* Constrain button width on small screens */
    }

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

/* Ensure all images within the main content area are at least 200px when not constrained by max-width: 100% */
/* This rule applies to all img tags under .page-privacy-policy, regardless of specific class names */
/* The primary enforcement is that the *source image* should be large, and CSS should not *force* it below 200px. */
/* If max-width: 100% makes a 200px image display at 100px, it's fine *if the original image was 200px*. */
/* The rule primarily targets CSS *setting* width/height to <200px. */
/* Let's ensure no CSS rule explicitly sets width/height < 200px for content images. */
/* The min-width/min-height will ensure that even if a small image is mistakenly provided, it will be scaled up, */
/* but the core requirement is large source images. */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Override min-width/height for specific image elements to allow max-width: 100% to work responsively */
.page-privacy-policy__image {
    min-width: unset; 
    min-height: unset; 
}

@media (max-width: 768px) {
    .page-privacy-policy__image {
        /* This ensures images are responsive and don't overflow, overriding any potential fixed small sizes */
        max-width: 100%;
        height: auto;
    }
}