/* style/privacy-policy.css */

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    background-color: #121E33; /* A slightly lighter dark blue for content background */
    line-height: 1.6;
}

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #1A2B4C, #2E456E); /* Darker gradient for hero */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__title {
    font-size: 2.8em;
    color: #F0B90B; /* Auxiliary color for main title */
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: #1A2B4C; /* Primary dark blue for main content background */
    color: #E0E0E0; /* Light grey text for readability */
}

.page-privacy-policy__article {
    background-color: #2E456E; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__heading {
    font-size: 1.8em;
    color: #F0B90B; /* Auxiliary color for headings */
    margin-top: 35px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F0B90B;
    padding-bottom: 10px;
}

.page-privacy-policy__article p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #C0C0C0; /* Slightly darker light grey for paragraph text */
}

.page-privacy-policy__article ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-privacy-policy__article li {
    margin-bottom: 8px;
}

.page-privacy-policy__article strong {
    color: #F0B90B;
}

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

.page-privacy-policy__link {
    color: #F0B90B;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    text-decoration: underline;
    color: #FFD700; /* Brighter gold on hover */
}

.page-privacy-policy__cta-section {
    background-color: #1A2B4C; /* Primary dark blue */
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #F0B90B;
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #F0B90B; /* Auxiliary color for CTA title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-privacy-policy__cta-text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-privacy-policy__button--primary {
    background-color: #F0B90B; /* Auxiliary color for primary button */
    color: #1A2B4C; /* Primary color for text */
    border: 2px solid #F0B90B;
}

.page-privacy-policy__button--primary:hover {
    background-color: #FFD700; /* Brighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(240, 185, 11, 0.4);
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #F0B90B; /* Auxiliary color for text */
    border: 2px solid #F0B90B;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #F0B90B; /* Auxiliary color as background on hover */
    color: #1A2B4C; /* Primary color for text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(240, 185, 11, 0.4);
}

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

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

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

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

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

    .page-privacy-policy__heading {
        font-size: 1.5em;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__cta-section {
        padding: 30px;
        margin-top: 40px;
    }

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

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1em;
    }
}

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

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

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

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