*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
      padding-top: 60px;
}
.site-header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
    background: #fff;
    padding: 10px 5%;
    border-bottom: 1px solid #eee;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    gap:8px;
    flex-shrink:0;
}

.logo-icon{
    font-size:34px;
    color:#011F7B;
}

.logo-name{
    height:36px;
    width:auto;
    display:block;
}




/* ===========================
   NAVIGATION
=========================== */
.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    flex:1;
}

.main-nav a{
    text-decoration:none;
    color:#000;
    font-family:general;
    font-size:15px;
    font-weight:600;
    padding:10px 14px;
    border-radius:10px;
    transition:.3s;
}

.main-nav a:hover{
    background:#f5a623;
}

/* ===========================
   RIGHT SIDE
=========================== */

.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-shrink:0;
}

.login-icon{
    width:46px;
    height:46px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#000;
    border-radius:50%;
    transition:.3s;
}

.login-icon:hover{
    background:#f3f3f3;
}

.login-icon i{
    font-size:28px;
}

/* Hide menu button on desktop */
.menu-toggle{
    display:none;
}
@media (max-width:768px){

.menu-toggle{
    display:block;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    z-index:1001;
}
.login-icon{
    margin-right: -70px;
}


.main-nav{
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:25px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.main-nav.active{
    display:flex;
}

}


*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;
background:#09090b;
color:#fff;
line-height:1.8;

}

/* HERO */

.privacy-hero{

padding:110px 20px 70px;
text-align:center;
background:#09090b;
border-bottom:1px solid #ececec;

}

.hero-content{

max-width:750px;
margin:auto;

}

.badge{


display:inline-block;
padding:-10px 10px;
border-radius:50px;
background:#09090b;
color:#f5a623;
font-weight:600;
font-size:15px;
margin-bottom:20px;

}

.privacy-hero h1{
font-family: clash;
font-size:58px;
font-weight:800;
margin-bottom:18px;
color:#fff;


}

.privacy-hero p{

font-size:18px;
color:#fff;

}

/* CONTENT */

.privacy-section{

padding:-10px 20px;

}

.privacy-card{

max-width:950px;
margin:auto;
background:#09090b;
padding:60px;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.privacy-card h2{
    
font-family: clash;
font-size:28px;
margin-bottom:15px;
margin-top:40px;
color:#fff;

}

.privacy-card h2:first-child{

margin-top:0;

}

.privacy-card p{
font-family: general;
font-size:17px;
color:#fff;
margin-bottom:20px;

}

.privacy-card ul{
color: #f5a623;
padding-left:25px;
margin-bottom:20px;

}

.privacy-card li{

margin-bottom:12px;
color: #f5a623;;
font-size:17px;

}

strong{

color:#f5a623;

}

/* MOBILE */

@media(max-width:768px){

.privacy-hero{

padding:90px 20px 60px;

}

.privacy-hero h1{

font-size:40px;

}

.privacy-card{

padding:35px 25px;

}

.privacy-card h2{

font-size:24px;

}

}


@font-face {
    font-family: "clash";
    src: url("fonts/clash.otf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-size: medium;
}

@font-face {
    font-family: "aurora";
    src: url("fonts/aurora.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "general";
    src: url("fonts/general.otf") format("truetype");
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: "neue";
    src: url("fonts/neue.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

html{
    scroll-behavior:smooth;
}
