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

.page-privacy-policy__hero {
    background-color: #0A2239;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 34, 57, 0.85), rgba(224, 180, 75, 0.2));
    z-index: 1;
}

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

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B44B;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #0A2239;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #E0B44B;
    border-radius: 2px;
}

.page-privacy-policy__section p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #444;
}

.page-privacy-policy__section a {
    color: #E0B44B;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__section a:hover {
    text-decoration: underline;
}

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

.page-privacy-policy__list li {
    margin-bottom: 10px;
}

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

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: center;
}

.page-privacy-policy__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #0A2239;
}

.page-privacy-policy__contact-link {
    color: #E0B44B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
    color: #0A2239;
    text-decoration: underline;
}

.page-privacy-policy__cta-text {
    text-align: center;
    font-size: 1.3em;
    color: #0A2239;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-privacy-policy__cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 30px;
    background-color: #E0B44B;
    color: #0A2239;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #0A2239;
    color: #E0B44B;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.2em;
    }
    .page-privacy-policy__subtitle {
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section {
        padding: 40px 0;
    }
    .page-privacy-policy__image-inline {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}