*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Outfit',sans-serif;
    background:#f8fafc;
    color:#0f172a;
}


/* HERO */

.policy-hero{
    height:60vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.policy-hero img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    animation:fadeUp 1s ease;
}

.hero-content span{
    letter-spacing:3px;
    color:#38bdf8;
}

.hero-content h1{
    font-size:64px;
    margin:20px 0;
}

.hero-content p{
    font-size:18px;
    opacity:0.9;
}

/* CONTENT */

.policy-wrapper{
    padding:100px 8%;
}

.policy-card{
    background:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.policy-card h2{
    margin-bottom:20px;
    margin-top:40px;
    color:#4f46e5;
}

.policy-card ul{
    padding-left:20px;
}

.policy-card ul li{
    margin-bottom:14px;
    line-height:1.8;
    color:#475569;
}

.policy-card p{
    line-height:1.8;
    color:#475569;
}

/* FOOTER */

.footer{
    background:#0f172a;
    padding:70px 8%;
    text-align:center;
    color:#fff;
}

.footer img{
    height:60px;
    margin-bottom:20px;
}

.footer p{
    max-width:600px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.7;
}

.footer-links{
    margin:30px 0;
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.copyright{
    margin-top:20px;
    color:#94a3b8;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .policy-card{
        padding:30px;
    }

}