/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#0a0f1c;
    color:#ffffff;
    line-height:1.3;
}

.container{
    width:90%;
    max-width:900px;
    margin:auto;
}

/* ===== NAV ===== */

nav{
    padding:20px 0;
    background:#0a0f1c;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-weight:800;
    font-size:1.4rem;
    background:linear-gradient(90deg,#00f5ff,#0072ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.back-link{
    color:#00f5ff;
    text-decoration:none;
    font-weight:500;
}

/* ===== HERO ===== */

.policy-hero{
    padding:80px 0;
    text-align:center;
    background:linear-gradient(to bottom, #0a0f1c, #0d1424);
}

.policy-hero h1{
    font-size:2.5rem;
    margin-bottom:10px;
}

.policy-hero p{
    color:#94a3b8;
}

/* ===== CONTENT ===== */

.policy-content{
    padding:80px 0;
}

.policy-content h2{
    margin-top:40px;
    margin-bottom: 8px;
    font-size:1.4rem;
    color:#00f5ff;
}

.policy-content p{
    color:#cbd5e1;
    margin-bottom:15px;
    font-size: 1rem;
}

.policy-content ul{
    margin-left:20px;
    margin-bottom:20px;
}

.policy-content ul li{
    margin-bottom:5px;
    color:#a0aec0;
    font-size: 1rem;
}

/* ===== FOOTER ===== */

footer{
    padding:30px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.05);
    background:#050810;
}

.footer-content p{
    color:#64748b;
    font-size:0.9rem;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

    .policy-hero h1{
        font-size:2rem;
    }

    .nav-wrapper{
        flex-direction:column;
        gap:10px;
    }
}