/* style/privacy-policy.css */

/* General styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for dark background */
    background-color: #121E31; /* Darker background to complement main color */
}

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

.page-privacy-policy__hero-section {
    background: linear-gradient(135deg, #1A2A4A, #2C3E50); /* Gradient of main color and a slightly lighter dark blue */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for main title */
}

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

.page-privacy-policy__subtitle {
    font-size: 1.3em;
    color: #E0E0E0; /* Light gray for subtitle */
}

.page-privacy-policy__content-section {
    padding: 50px 0;
    background-color: #121E31; /* Consistent dark background */
}

.page-privacy-policy__article {
    line-height: 1.8;
}

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

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

.page-privacy-policy__article strong {
    color: #FFD700; /* Highlight strong text with gold */
}

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

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

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

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

.page-privacy-policy__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #B0B0B0; /* Slightly lighter gray for captions */
    font-size: 0.95em;
}

.page-privacy-policy__cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #1A2A4A; /* Main dark blue for CTA background */
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-section p {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #FFD700; /* Gold for CTA text */
    font-weight: bold;
}

.page-privacy-policy__button {
    display: inline-block;
    background-color: #FFD700; /* Gold for button background */
    color: #1A2A4A; /* Dark blue for button text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 0;
    }

    .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 p,
    .page-privacy-policy__list li {
        font-size: 1em;
    }

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

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

@media (max-width: 480px) {
    .page-privacy-policy__hero-section {
        padding: 40px 0;
    }

    .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__cta-section p {
        font-size: 1em;
    }

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