:root {
    --primary-blue: #023077;
    --accent-blue: #1977f2;
    --text-dark: #0f172a;
    --text-light: #475569;
    --white: #ffffff;
    --bg-light: #f8fafc;
}

.privacy-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .privacy-hero {
        height: 250px;
        margin-top: 80px;
    }
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(2, 48, 119, 0.7), rgba(2, 48, 119, 0.5));
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.privacy-container {
    max-width: 1000px;
    margin: -50px auto 80px;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .privacy-container {
        margin: -30px 15px 40px;
        padding: 30px 20px;
    }
}

.privacy-last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
    display: block;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.privacy-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-section h2 span {
    background: var(--primary-blue);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.privacy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.privacy-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.privacy-contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.privacy-contact-card p {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-contact-card p a {
    color: var(--accent-blue);
    text-decoration: none;
}

.privacy-contact-card i {
    width: 25px;
    color: var(--accent-blue);
}
