.privacy-hero{
    position:relative;

    overflow:hidden;

    padding:90px 0 110px;

    background:
    linear-gradient(135deg,#0f172a 0%,#1e293b 50%,#312e81 100%);
}

.privacy-hero::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(59,130,246,0.25),
    transparent 35%);
}

.privacy-hero-content{
    position:relative;

    z-index:2;

    max-width:760px;
}

.privacy-badge{
    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    color:white;

    font-weight:700;

    margin-bottom:26px;
}

.privacy-hero h1{
    font-size:72px;

    line-height:1.02;

    color:white;

    margin-bottom:24px;
}

.privacy-hero p{
    font-size:20px;

    line-height:1.7;

    color:rgba(255,255,255,0.8);
}

/* CONTENT */

.privacy-content{
    background:#f8fafc;

    padding:80px 0;
}

.privacy-layout{
    display:grid;

    grid-template-columns:300px 1fr;

    gap:34px;

    align-items:start;
}

/* SIDEBAR */

.privacy-sidebar{
    position:sticky;

    top:120px;
}

.sidebar-box{
    background:white;

    border-radius:30px;

    padding:28px;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.05);
}

.sidebar-box h3{
    font-size:24px;

    margin-bottom:24px;
}

.sidebar-box nav{
    display:flex;

    flex-direction:column;

    gap:14px;
}

.sidebar-box nav a{
    text-decoration:none;

    color:#475569;

    font-weight:600;

    transition:0.3s;
}

.sidebar-box nav a:hover{
    color:#2563eb;
}

/* MAIN */

.privacy-main{
    display:flex;

    flex-direction:column;

    gap:28px;
}

.privacy-card{
    background:white;

    border-radius:34px;

    padding:40px;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.04);
}

.privacy-card h2{
    font-size:36px;

    margin-bottom:24px;
}

.privacy-card p{
    color:#475569;

    line-height:1.9;

    margin-bottom:18px;
}

.privacy-card ul{
    padding-left:22px;

    color:#475569;

    line-height:1.9;

    margin-bottom:18px;
}

/* CONTACT */

.contact-box{
    display:flex;

    align-items:center;

    gap:16px;

    margin-top:24px;

    background:#eef2ff;

    border-radius:24px;

    padding:20px;
}

.contact-box span{
    font-size:28px;
}

.contact-box strong{
    font-size:18px;
}

/* MOBILE */

@media(max-width:980px){

    .privacy-layout{
        grid-template-columns:1fr;
    }

    .privacy-sidebar{
        position:relative;

        top:0;
    }

    .privacy-hero h1{
        font-size:54px;
    }

}

@media(max-width:768px){

    html,
    body{
        overflow-x:hidden;
    }

    .privacy-hero{
        padding:60px 0 80px;
    }

    .privacy-content{
        padding:50px 0;
    }

    .privacy-card{
        padding:28px;
    }

}

@media(max-width:640px){

    .privacy-hero h1{
        font-size:40px;
    }

    .privacy-hero p{
        font-size:18px;
    }

    .privacy-card h2{
        font-size:28px;
    }

    .contact-box{
        flex-direction:column;

        align-items:flex-start;
    }

}