/* style/privacy-policy.css */

/* General page styling */
.page-privacy-policy {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Ensure no image overflow */
}

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

.page-privacy-policy__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-privacy-policy__intro-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for CTA */
    color: #000000; /* Dark text for bright button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-privacy-policy__cta-button:hover {
    background-color: #e0a53b; /* Slightly darker yellow on hover */
    transform: translateY(-2px);
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3; /* Subtle background image */
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #000000; /* Main text color */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45; /* Accent line */
    padding-bottom: 10px;
}

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

.page-privacy-policy__content-area p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-privacy-policy__content-area ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-privacy-policy__content-area li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-privacy-policy__content-area a {
    color: #FCBC45; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__content-area a:hover {
    color: #e0a53b;
    text-decoration: underline;
}

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

.page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto; /* Center the image */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #000000; /* Dark background for final CTA */
    color: #FFFFFF;
    border-radius: 8px;
}

.page-privacy-policy__cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-privacy-policy__cta-button--bottom {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-privacy-policy__cta-button--bottom:hover {
    background-color: #e0a53b;
}

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

    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }

    .page-privacy-policy__intro-text {
        font-size: 1.1em;
    }

    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

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

    .page-privacy-policy__content-area p,
    .page-privacy-policy__content-area li {
        font-size: 1em;
    }

    .page-privacy-policy__image-container img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size for mobile */
        min-height: 200px; /* Ensure minimum size for mobile */
    }

    .page-privacy-policy__cta-text {
        font-size: 1.2em;
    }

    .page-privacy-policy__cta-button--bottom {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Ensure content area images do not overflow on mobile */
    .page-privacy-policy__content-area img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 2em;
    }
}

/* Image CSS: ensure no filter, min-width/height for content images */
.page-privacy-policy img {
    /* No filter properties are used here, maintaining original image colors */
    /* Example of allowed properties: */
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Specific rule to prevent content images from being too small,
   applying to any img within .page-privacy-policy, overriding potential smaller defaults. */
.page-privacy-policy img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
}