/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A2E59, #2c5a93);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(255, 165, 0, 0.2) 0%, transparent 70%);
    opacity: 0.3;
    animation: page-privacy-policy-gradient-anim 15s infinite alternate;
}

@keyframes page-privacy-policy-gradient-anim {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50%, 50%); }
}

.page-privacy-policy__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

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

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

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

.page-privacy-policy__article {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__heading {
    color: #0A2E59; /* Primary color */
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFA500;
    padding-bottom: 10px;
}

.page-privacy-policy__article p {
    margin-bottom: 15px;
    color: #555;
}

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

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

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

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    object-fit: cover;
    max-height: 300px;
}

.page-privacy-policy__image--inline {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.page-privacy-policy__contact-link {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
}

.page-privacy-policy__cta-block {
    background-color: #f2f7fc;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.page-privacy-policy__cta-block p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #0A2E59;
    font-weight: 600;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
    font-size: 1em;
}

.page-privacy-policy__button--primary {
    background-color: #FFA500;
    color: #0A2E59;
    border: 1px solid #FFA500;
}

.page-privacy-policy__button--primary:hover {
    background-color: #ffb733;
    transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
    background-color: #0A2E59;
    color: #fff;
    border: 1px solid #0A2E59;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #1a4d8c;
    transform: translateY(-2px);
}

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

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

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

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

    .page-privacy-policy__button {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }
}

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

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

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

    .page-privacy-policy__cta-block {
        padding: 20px;
    }
}