/* style/privacy-policy.css */

/* Ensure text color contrasts with the default white body background */
.page-privacy-policy {
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header offset for main content to prevent overlap with fixed header */
.page-privacy-policy__hero-section {
    padding-top: var(--header-offset, 120px); /* Default for desktop */
    background-color: #000000; /* Primary color background for hero */
    color: #FFFFFF; /* White text for dark background */
    text-align: center;
    padding-bottom: 60px;
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.page-privacy-policy__intro-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 1000px; /* Constrain image width within hero */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__section {
    background-color: #FFFFFF; /* White background for sections */
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333; /* Dark text for white background */
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #000000; /* Primary color for section titles */
    margin-bottom: 15px;
    border-bottom: 2px solid #FCBC45; /* Highlight with login color */
    padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    font-size: 1em;
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 600px; /* Constrain content images */
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__link {
    color: #FCBC45; /* Login color for links */
    text-decoration: none;
    font-weight: bold;
}

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

.page-privacy-policy__cta-section {
    background-color: #000000; /* Primary color background */
    color: #FFFFFF; /* White text */
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #FCBC45; /* Highlight with login color */
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for button background */
    color: #000000; /* Black text for button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__cta-button:hover {
    background-color: #FFD170; /* Lighter shade on hover */
}

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

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

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

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

    .page-privacy-policy__hero-section,
    .page-privacy-policy__content-area,
    .page-privacy-policy__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

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

/* Ensure no image filter is applied */
.page-privacy-policy img {
    filter: none !important;
}

/* Ensure content area images are not small */
.page-privacy-policy__image,
.page-privacy-policy__hero-image {
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
}