/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A246A 0%, #3a5c9b 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.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.2);
}

.page-privacy-policy__content-section {
    padding: 50px 0;
    background-color: #ffffff;
}

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

.page-privacy-policy__heading {
    font-size: 2em;
    color: #0A246A;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: 600;
}

.page-privacy-policy__sub-heading {
    font-size: 1.5em;
    color: #0A246A;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

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

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

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

.page-privacy-policy__cta-section {
    background-color: #0A246A;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 500;
    color: #FFD700;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    color: #0A246A;
}

/* 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.7em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1.3em;
    }
    .page-privacy-policy__article {
        padding: 20px;
    }
    .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: 1em;
    }
    .page-privacy-policy__heading {
        font-size: 1.5em;
    }
    .page-privacy-policy__sub-heading {
        font-size: 1.2em;
    }
    .page-privacy-policy__hero {
        padding: 40px 15px;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.1em;
    }
    .page-privacy-policy__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}