/* style/privacy-policy.css */

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for text on dark background */
    background-color: #001f3f; /* Dark blue main background */
    line-height: 1.6;
}

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #001f3f 0%, #0a3a6a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

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

.page-privacy-policy__intro {
    font-size: 1.2em;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-privacy-policy__section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #0a2a4b; /* Slightly lighter dark blue for sections */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #ffcc00; /* Gold for section titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 10px;
}

.page-privacy-policy__section p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

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

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

.page-privacy-policy__list strong {
    color: #ffffff;
}

.page-privacy-policy__section-image {
    width: 100px;
    height: 100px;
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #1a4a7a;
    padding: 10px;
}

.page-privacy-policy__contact {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #1a4a7a;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__contact .page-privacy-policy__section-title {
    color: #ffcc00;
    border-bottom: none;
    margin-bottom: 15px;
}

.page-privacy-policy__contact p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-privacy-policy__btn {
    display: inline-block;
    background-color: #ffcc00; /* Gold button */
    color: #001f3f; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

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

    .page-privacy-policy__intro,
    .page-privacy-policy__contact p {
        font-size: 1em;
    }

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

    .page-privacy-policy__section-image {
        float: none;
        margin: 20px auto;
        display: block;
    }

    .page-privacy-policy__hero,
    .page-privacy-policy__section,
    .page-privacy-policy__contact {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

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

    .page-privacy-policy__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}