/* style/privacy-policy.css */

.page-privacy-policy {
    background-color: #FFFFFF; /* Using custom background color */
    color: #333333; /* Dark text for light background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

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

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

.page-privacy-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight with login color */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-privacy-policy__hero-image {
    width: 100%; /* HTML width/height are for layout slot, CSS makes it responsive */
    height: auto;
    display: block;
    margin: 30px auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover; /* Ensure image covers the area */
    max-width: 1000px; /* Constrain hero image width */
    height: 563px; /* Maintain 16:9 aspect ratio if max-width 1000px */
}

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

.page-privacy-policy__section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45; /* Accent border */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-privacy-policy__paragraph a {
    color: #FCBC45; /* Link color */
    text-decoration: underline;
}

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

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

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

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Constrain content image width */
    height: 600px; /* Maintain 4:3 aspect ratio if max-width 800px */
    object-fit: cover;
}

/* Call to Action Button */
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for contrast */
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #e0a53c; /* Slightly darker gold */
    transform: translateY(-3px);
}

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

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

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

    .page-privacy-policy__hero-section {
        padding: 40px 15px;
    }

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

    /* Mobile image rules */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
        width: auto; /* Allow width to adjust with max-width */
        min-width: 200px; /* Ensure images don't become too small */
        min-height: 200px;
    }

    /* Ensure content area does not cause horizontal scroll */
    .page-privacy-policy {
        overflow-x: hidden;
    }
}

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

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

/* Global image size constraint for content area (any img under .page-privacy-policy) */
/* This ensures no small images are displayed in the main content area */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}