/* style/privacy-policy.css */

/* --- Base Styles for Privacy Policy Page --- */
.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); /* Ensure content clears fixed header */
}

@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: var(--header-offset, 120px); /* For mobile as well */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
    background-color: #002060; /* Primary color background */
    color: #ffffff; /* White text for dark background */
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Contain image */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Ensure text is above image */
}

.page-privacy-policy__main-title {
    font-size: 2.8em;
    color: #FFD700; /* Secondary color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.page-privacy-policy__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, crop if necessary */
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color for CTA */
    color: #002060; /* Primary color text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure minimum button size */
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #001a4d; /* Slightly darker blue on hover */
}

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

.page-privacy-policy__section {
    margin-bottom: 40px;
    background-color: #ffffff; /* White background for content sections */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #002060; /* Primary color for section titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700; /* Secondary color underline */
    padding-bottom: 10px;
}

.page-privacy-policy__section-paragraph {
    margin-bottom: 15px;
    font-size: 1em;
    color: #333333; /* Dark text for readability */
}

.page-privacy-policy__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

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

.page-privacy-policy__inline-cta {
    color: #002060; /* Primary color for inline links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__inline-cta:hover {
    color: #FFD700; /* Secondary color on hover */
}

.page-privacy-policy__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__link-text {
    color: #002060;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: bold;
}

.page-privacy-policy__link-text:hover {
    color: #FFD700;
}

/* --- Final CTA Section --- */
.page-privacy-policy__cta-section {
    background-color: #FFD700; /* Secondary color background */
    padding: 60px 20px;
    text-align: center;
    color: #002060; /* Primary color text for contrast */
}

.page-privacy-policy__cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff; /* White card background */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__cta-title {
    font-size: 2.5em;
    color: #002060;
    margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #333333;
}

.page-privacy-policy__main-cta-button {
    display: inline-block;
    background-color: #002060; /* Primary color for main CTA */
    color: #FFD700; /* Secondary color text for contrast */
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure minimum button size */
}

.page-privacy-policy__main-cta-button:hover {
    background-color: #001a4d; /* Slightly darker blue on hover */
    color: #e6c200; /* Slightly darker gold on hover */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.4em;
    }

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

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

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

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

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

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

    .page-privacy-policy__section {
        padding: 20px;
    }

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

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

    .page-privacy-policy__cta-card {
        padding: 30px 20px;
    }

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

    .page-privacy-policy__cta-description {
        font-size: 0.95em;
    }

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

    /* Ensure all images are responsive and not smaller than 200px */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size for all content images */
        min-height: 200px; /* Enforce minimum size for all content images */
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__cta-button,
    .page-privacy-policy__main-cta-button {
        width: 100%;
        box-sizing: border-box;
    }
}