/* ── Privacy Policy page ────────────────────────────────────────────── */

.privacy-page {
    padding: 3.5rem 0 5rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--navy, #1b2a52);
    margin-bottom: .5rem;
}

.privacy-updated {
    font-size: .9rem;
    color: #666;
    margin-bottom: 1.75rem;
}

.privacy-intro {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section-title {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy, #1b2a52);
    margin-bottom: .85rem;
}

.privacy-section p {
    font-size: .97rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: .75rem;
}

.privacy-section ul {
    padding-left: 1.4rem;
    margin-bottom: 0;
}

.privacy-section ul li {
    font-size: .97rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: .35rem;
}

/* Contact block in section 8 */
.privacy-contacts {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .75rem;
}

.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .97rem;
    color: #444;
}

.privacy-contact-item i {
    color: var(--navy, #1b2a52);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.privacy-contact-item a {
    color: var(--navy, #1b2a52);
    text-decoration: none;
}

.privacy-contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .privacy-page {
        padding: 2rem 0 3rem;
    }

    .privacy-title {
        font-size: 1.7rem;
    }
}

