/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text on dark background for contrast */
    background-color: #1A237E; /* Main brand color for background */
}

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #1A237E 0%, #394396 100%); /* Gradient with main color */
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #FFC107;
}

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

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

.page-privacy-policy__hero-image {
    max-width: 300px;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section {
    padding: 40px 0;
    background-color: #1A237E;
}

.page-privacy-policy__heading {
    font-size: 2.2em;
    color: #FFC107; /* Auxiliary color for section headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107;
    padding-left: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #f0f0f0;
}

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

.page-privacy-policy__list li {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #2a348e; /* Slightly lighter shade of main color */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-text {
    font-size: 1.5em;
    color: #FFC107; /* Auxiliary color for CTA text */
    margin-bottom: 25px;
    font-weight: bold;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFC107; /* Auxiliary color for button background */
    color: #1A237E; /* Main color 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.3);
}

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

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

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

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

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list li {
        font-size: 1em;
    }

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

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

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

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

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

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list li {
        font-size: 0.9em;
    }

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

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