.hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    overflow: hidden;


    background:
        linear-gradient(135deg,
            rgba(0, 20, 60, 0.82) 0%,
            rgba(0, 74, 153, 0.72) 60%,
            rgba(0, 97, 194, 0.65) 100%),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80') center / cover no-repeat;
}


.hero-h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
}

.hero-h6 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}


@media (max-width: 767px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 80px 0 60px;
    }
}



/* ── PRIVACY POLICY STYLING ── */
.policy-section {
    padding: 100px 0;
    background: #ffffff;
}

.policy-header .policy-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00143c;
    margin-top: 10px;
}

.last-updated {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sidebar Nav */
.policy-nav {
    list-style: none;
    padding: 0;
}

.policy-nav li {
    margin-bottom: 12px;
}

.policy-nav a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.policy-nav a:hover {
    color: #004a99;
    padding-left: 5px;
}

/* Text Content */
.policy-text h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: #00143c;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.policy-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-text ul {
    margin-bottom: 25px;
}

.policy-text ul li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Details Box */
.contact-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    color: #00143c;
    line-height: 1.8;
}

.contact-box a {
    color: #004a99;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 991px) {
    .policy-section {
        padding: 60px 0;
    }

    .policy-header .policy-title {
        font-size: 1.8rem;
    }
}