/* style/privacy-policy.css */

/* Global styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for body text, good contrast */
    background-color: #f8f8f8; /* Light background */
}

/* Container for content */
.page-privacy-policy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A2463, #3A5A9A); /* Dark blue to slightly lighter blue for a professional gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #E3B505; /* Secondary color for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-privacy-policy__heading {
    font-size: 2.2em;
    color: #0A2463; /* Primary color for headings */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__sub-heading {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid #E3B505; /* Accent border */
    padding-left: 15px;
}

.page-privacy-policy__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444; /* Slightly darker than default for better readability */
}

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

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

.page-privacy-policy__list-item strong {
    color: #0A2463; /* Emphasize keywords */
}

.page-privacy-policy__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

/* Links */
.page-privacy-policy__link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #E3B505;
    text-decoration: underline;
}

/* Call to Action Button */
.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-text {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-privacy-policy__button {
    display: inline-block;
    background-color: #E3B505; /* Secondary color for buttons */
    color: #0A2463; /* Primary color for button text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__button:hover {
    background-color: #f0c94b; /* Slightly lighter yellow on hover */
    color: #0A2463;
    transform: translateY(-3px);
}

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

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

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

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

    .page-privacy-policy__text,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }

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

    .page-privacy-policy__hero {
        padding: 60px 0;
    }

    .page-privacy-policy__section {
        padding: 40px 0;
    }
}

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

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

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

    .page-privacy-policy__sub-heading {
        font-size: 1.2em;
    }

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

    .page-privacy-policy__hero {
        padding: 40px 0;
    }

    .page-privacy-policy__section {
        padding: 30px 0;
    }
}