/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Darker blue gradient */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-privacy-policy__hero-content {
    max-width: 700px;
}

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
}

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

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-privacy-policy__section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

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

.page-privacy-policy__heading {
    font-size: 2em;
    color: #003366; /* Deep blue for section headings */
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    font-weight: 600;
}

.page-privacy-policy__section p {
    margin-bottom: 15px;
    color: #444;
}

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

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

.page-privacy-policy__list li strong {
    color: #003366;
}

.page-privacy-policy__image-inline {
    text-align: center;
    margin: 30px 0;
}

.page-privacy-policy__image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Highlighted text */
.page-privacy-policy .highlight {
    color: #003366;
    font-weight: bold;
}

/* Call to Action Button */
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #003366; /* Deep blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button:hover {
    background-color: #003366; /* Dark blue on hover */
    color: #FFD700; /* Gold text on dark blue */
    transform: translateY(-2px);
    border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__hero {
        flex-direction: column;
        padding: 40px 20px;
    }

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

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

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

    .page-privacy-policy__image {
        max-width: 95%;
    }
}

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

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

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