/* style/privacy-policy.css */

/* Base styles for the 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); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    padding: 80px 20px;
    color: #ffffff; /* White text on hero image */
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    background: rgba(10, 25, 47, 0.7); /* Semi-transparent dark blue overlay */
    padding: 40px;
    border-radius: 10px;
}

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

.page-privacy-policy__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-privacy-policy__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #0A192F; /* Dark blue for headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
}

.page-privacy-policy__heading:first-of-type {
    margin-top: 0;
}

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

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
}

.page-privacy-policy__link {
    color: #0A192F; /* Dark blue for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #FFD700; /* Gold on hover */
}

.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 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
    object-fit: cover;
}

.page-privacy-policy__contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
}

/* CTA Banner at the bottom */
.page-privacy-policy__cta-banner {
    background-color: #0A192F; /* Dark blue background */
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-privacy-policy__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }

    .page-privacy-policy__hero-section {
        padding: 60px 15px;
        min-height: 400px;
    }

    .page-privacy-policy__hero-content {
        padding: 25px;
    }

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

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

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

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

    .page-privacy-policy__article {
        padding: 25px;
    }

    .page-privacy-policy__heading {
        font-size: 1.5em;
        margin-top: 30px;
    }

    .page-privacy-policy__image-container img {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }

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

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

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

/* Ensure content area images do not cause horizontal scroll */
@media (max-width: 768px) {
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}

/* Specific rule to prevent content images from being smaller than 200px in content area */
/* This targets any img within the main page content, regardless of its specific class */
.page-privacy-policy img {
    min-width: 200px;
    min-height: 200px;
}