/* style/privacy-policy.css */

.page-privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for text on light background */
    background-color: #f9f9f9; /* Light background */
    padding-bottom: 50px;
}

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deep sea blue gradient */
    color: #ffffff;
    padding: 80px 0;
    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, 204, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-privacy-policy__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

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

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep sea blue text */
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-primary:hover {
    background-color: #e6b800; /* Darker yellow on hover */
    transform: translateY(-2px);
}

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

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

.page-privacy-policy__heading {
    font-size: 2em;
    color: #003366; /* Deep sea blue */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.page-privacy-policy__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #FFCC00; /* Golden yellow underline */
}

.page-privacy-policy p {
    margin-bottom: 15px;
    color: #444444;
}

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

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

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

.page-privacy-policy__contact-link {
    color: #003366; /* Deep sea blue for links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__contact-link:hover {
    color: #FFCC00; /* Golden yellow on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.2em;
    }
    .page-privacy-policy__subtitle {
        font-size: 1em;
    }
    .page-privacy-policy__heading {
        font-size: 1.7em;
    }
    .page-privacy-policy__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 1.8em;
    }
    .page-privacy-policy__heading {
        font-size: 1.5em;
    }
    .page-privacy-policy__container {
        padding: 0 15px;
    }
}