/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Light text on dark background for general readability */
    background-color: #1A2E44; /* Main dark blue background */
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #1A2E44, #3a5c80); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title, high contrast on dark blue */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__subtitle {
    font-size: 1.3em;
    color: #E0E0E0; /* Lighter gray for subtitle, good contrast */
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: #1A2E44; /* Consistent dark blue background */
}

.page-privacy-policy__article {
    background-color: #2A4058; /* Slightly lighter dark blue for article background, good contrast with text */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #FFD700; /* Gold for section headings, high contrast */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-privacy-policy__article p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0; /* Light text for paragraphs, good contrast */
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light text for list items */
}

.page-privacy-policy__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__list strong {
    color: #FFD700; /* Gold for strong text in lists, good contrast */
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-link {
    color: #FFD700; /* Gold for contact links, good contrast */
    text-decoration: none;
    font-weight: bold;
}

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

/* Call to Action Section */
.page-privacy-policy__cta-section {
    background-color: #3a5c80; /* A lighter shade of the main dark blue, distinct from article */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.page-privacy-policy__cta-text {
    font-size: 1.4em;
    color: #FFFFFF; /* White text for CTA, good contrast */
    margin-bottom: 30px;
    font-weight: 500;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA button */
    color: #1A2E44; /* Dark blue text on gold button, high contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__cta-image {
    margin-top: 30px;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.5em;
    }

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

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

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

    .page-privacy-policy__article p,
    .page-privacy-policy__list li {
        font-size: 1em;
    }

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

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

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

    .page-privacy-policy__subtitle {
        font-size: 0.9em;
    }

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

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

    .page-privacy-policy__list {
        margin-left: 20px;
    }

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

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