/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A2342; /* Deep Sea Blue - Main background */
}

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

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

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

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    color: #B0C4DE; /* Light steel blue for subtitle */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-privacy-policy__hero-image-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section--alt {
    background-color: #1A3A60; /* Slightly lighter dark blue for alternate sections */
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0; /* Light gray for paragraphs */
}

.page-privacy-policy__section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #E0E0E0; /* Light gray for list items */
}

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

.page-privacy-policy__section ul li strong {
    color: #FFD700; /* Gold for strong text in lists */
}

.page-privacy-policy__section a {
    color: #FFD700; /* Gold for links */
    text-decoration: underline;
}

.page-privacy-policy__section a:hover {
    color: #E6B800; /* Darker gold on hover */
}

.page-privacy-policy__image-content {
    text-align: center;
    margin-top: 30px;
}

.page-privacy-policy__content-image {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA button */
    color: #0A2342; /* Deep Sea Blue for CTA text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.page-privacy-policy__section--contact {
    text-align: center;
}

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

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

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

    .page-privacy-policy__section p,
    .page-privacy-policy__section ul li {
        font-size: 0.95em;
    }

    .page-privacy-policy__hero-image {
        max-width: 90%;
    }

    .page-privacy-policy__content-image {
        max-width: 90%;
    }

    .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__section-title {
        font-size: 1.5em;
    }

    .page-privacy-policy__section p,
    .page-privacy-policy__section ul li {
        font-size: 0.9em;
    }

    .page-privacy-policy__hero-image {
        max-width: 100%;
    }

    .page-privacy-policy__content-image {
        max-width: 100%;
    }
}