/* style/privacy-policy.css */

/* --- General Styles for Privacy Policy Page --- */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark backgrounds */
    background-color: #1A2B4C; /* Main dark blue background */
    padding-bottom: 50px; /* Space for footer */
}

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

/* --- Hero Section --- */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #304a7a 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1); /* Gold accent */
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.page-privacy-policy__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.08); /* Gold accent */
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.page-privacy-policy__hero > .page-privacy-policy__container {
    position: relative;
    z-index: 1;
}

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

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

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

/* --- Section Styles --- */
.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-privacy-policy__section--alt {
    background-color: #2A3B5C; /* Slightly lighter dark blue for contrast */
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

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

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

.page-privacy-policy__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__list strong {
    color: #FFD700; /* Gold for strong text in lists */
}

.page-privacy-policy__section-image {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 40px auto 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Contact Section Specific --- */
.page-privacy-policy__section--contact {
    text-align: center;
    background-color: #1A2B4C;
}

.page-privacy-policy__contact-link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
    color: #FFF; /* White on hover */
    text-decoration: underline;
}

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

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

    .page-privacy-policy__section-title {
        font-size: 2em;
    }

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

    .page-privacy-policy__list {
        padding-left: 20px;
    }

    .page-privacy-policy__section-image {
        max-width: 90%;
    }
}

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

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

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

    .page-privacy-policy__list {
        padding-left: 15px;
    }
}