*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* ================= NAVBAR ================= */

.navbar{
  width:100%;
  height:90px;
  background:#000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 70px;
}

.logo{
  color:#f4c400;
  font-size:42px;
  font-weight:800;
}

.logo span{
  font-size:55px;
}

.logo small{
  display:block;
  font-size:24px;
  margin-top:-8px;
  margin-left:70px;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  text-decoration:none;
  color:white;
  font-size:15px;
  font-weight:500;
  position:relative;
}

nav a.active{
  color:#f4c400;
}

nav a.active::after{
  content:'';
  width:100%;
  height:2px;
  background:#f4c400;
  position:absolute;
  bottom:-10px;
  left:0;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:25px;
}

.login-btn{
  background:#f4c400;
  border:none;
  padding:15px 30px;
  border-radius:40px;
  font-weight:700;
  cursor:pointer;
}

.menu{
  color:white;
  font-size:24px;
  cursor:pointer;
}

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

.hero{
  background:#000;
  min-height:700px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:50px 70px;
}

.hero-left{
  width:48%;
}

.hero-left h1{
  color:white;
  font-size:95px;
  line-height:100px;
  font-weight:900;
}

.hero-left span{
  color:#f4c400;
}

.hero-left p{
  color:#d1d1d1;
  font-size:24px;
  line-height:42px;
  margin-top:30px;
  width:90%;
}

.hero-buttons{
  margin-top:45px;
  display:flex;
  gap:20px;
}

.track-btn{
  background:#f4c400;
  color:black;
  border:none;
  padding:18px 32px;
  border-radius:50px;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
}

.partner-btn{
  background:transparent;
  border:2px solid #f4c400;
  color:white;
  padding:18px 32px;
  border-radius:50px;
  font-size:17px;
  cursor:pointer;
}

.track-btn i,
.partner-btn i{
  margin-right:10px;
}

.hero-right{
  width:48%;
}

.hero-right img{
  width:100%;
  border-radius:25px;
}

/* ================= STATS ================= */

.stats{
  width:88%;
  margin:auto;
  margin-top:-70px;

  background:#0b0b0b;

  border-radius:25px;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  padding:35px;

  position:relative;
  z-index:10;

  box-shadow:0 15px 30px rgba(0,0,0,0.3);
}

.stat-box{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;

  border-right:1px solid rgba(255,255,255,0.1);
}

.stat-box:last-child{
  border-right:none;
}

.icon{
  width:65px;
  height:65px;
  border-radius:50%;
  border:2px solid #f4c400;

  display:flex;
  justify-content:center;
  align-items:center;
}

.icon i{
  color:#f4c400;
  font-size:28px;
}

.stat-box h2{
  color:white;
  font-size:48px;
}

.stat-box p{
  color:#d1d1d1;
  margin-top:8px;
}

/* ================= SERVICES ================= */

.services{
  padding:110px 70px;
}

.services h5{
  text-align:center;
  color:#f4c400;
  font-size:16px;
  margin-bottom:15px;
}

.services h2{
  text-align:center;
  font-size:60px;
  margin-bottom:70px;
}

.service-wrapper{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.service-card{
  background:white;
  border-radius:20px;
  padding:40px 30px;
  text-align:center;

  box-shadow:0 5px 20px rgba(0,0,0,0.08);

  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#f4c400;

  display:flex;
  justify-content:center;
  align-items:center;

  margin:auto;
  margin-bottom:25px;
}

.service-icon i{
  font-size:38px;
}

.service-card h3{
  font-size:28px;
  margin-bottom:18px;
}

.service-card p{
  color:#666;
  line-height:30px;
  font-size:17px;
}

/* ================= YELLOW CARD ================= */

.partner-card{
  background:#f4c400;
  border-radius:20px;
  padding:40px 30px;
}

.partner-card h3{
  font-size:38px;
  line-height:52px;
}

.partner-card p{
  margin-top:20px;
  line-height:32px;
  font-size:18px;
}

.partner-card button{
  width:100%;
  margin-top:35px;

  background:black;
  color:white;

  border:none;

  padding:18px;

  border-radius:40px;

  font-size:18px;
  cursor:pointer;
}

/* ================= APP SECTION ================= */

.app-section{
  width:90%;
  margin:auto;

  background:black;

  border-radius:20px;

  padding:30px 40px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.app-left{
  display:flex;
  align-items:center;
  gap:20px;
}

.app-left i{
  color:#f4c400;
  font-size:55px;
}

.app-left h3{
  color:white;
  font-size:30px;
}

.app-left p{
  color:#d1d1d1;
  margin-top:10px;
}

.app-right{
  display:flex;
  gap:20px;
}

.app-right img{
  width:180px;
}

/* ================= MOBILE ================= */

@media(max-width:1200px){

  .service-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:900px){

  nav{
    display:none;
  }

  .hero{
    flex-direction:column;
    gap:50px;
  }

  .hero-left,
  .hero-right{
    width:100%;
  }

  .hero-left h1{
    font-size:60px;
    line-height:70px;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .service-wrapper{
    grid-template-columns:1fr;
  }

  .app-section{
    flex-direction:column;
    gap:30px;
  }

}

@media(max-width:600px){

  .navbar{
    padding:0 20px;
  }

  .hero{
    padding:50px 20px;
  }

  .services{
    padding:100px 20px;
  }

  .hero-left h1{
    font-size:48px;
    line-height:58px;
  }

  .stats{
    grid-template-columns:1fr;
  }

}
.navbar-logo img{
  width:130px;
  height:auto;
  object-fit:contain;
}
/* ================= PRIVACY POLICY ================= */

.privacy-section{
  background:#fff;
  margin-top:40px;
}

/* TOPBAR */

.privacy-topbar{
  width:100%;
  background:#000;
  padding:20px 70px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.privacy-nav{
  display:flex;
  gap:35px;
}

.privacy-nav a{
  text-decoration:none;
  color:white;
  font-size:15px;
  font-weight:500;
  position:relative;
}

.privacy-nav a.active{
  color:#f4c400;
}

.privacy-nav a.active::after{
  content:'';
  width:100%;
  height:2px;
  background:#f4c400;
  position:absolute;
  left:0;
  bottom:-10px;
}

/* MAIN */

.privacy-container{
  display:flex;
  gap:40px;
  padding:50px 70px;
  align-items:flex-start;
}

/* SIDEBAR */

.privacy-sidebar{
  width:320px;
  background:#f7f7f7;
  border-radius:20px;
  padding:30px 25px;
}

.privacy-sidebar h3{
  font-size:24px;
  margin-bottom:30px;
}

.privacy-sidebar ul{
  list-style:none;
}

.privacy-sidebar li{
  display:flex;
  align-items:center;
  gap:12px;

  padding:16px 18px;
  border-radius:12px;

  font-size:15px;
  margin-bottom:12px;

  cursor:pointer;
  transition:0.3s;
}

.privacy-sidebar li i{
  font-size:15px;
}

.privacy-sidebar li.active{
  background:#f4c400;
  font-weight:700;
}

.privacy-sidebar li:hover{
  background:#f4c400;
}

/* CONTENT */

.privacy-content{
  flex:1;
}

.privacy-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}

.privacy-header h1{
  font-size:52px;
  margin-bottom:15px;
}

.breadcrumb{
  color:#777;
  font-size:15px;
}

.breadcrumb span{
  margin:0 10px;
}

.effective-date{
  color:#333;
  font-size:15px;
  margin-top:15px;

  display:flex;
  align-items:center;
  gap:10px;
}

.privacy-content hr{
  border:none;
  border-top:1px solid #e3e3e3;
  margin:30px 0;
}

/* BODY */

.privacy-body h2{
  font-size:36px;
  margin-bottom:20px;
}

.privacy-body p{
  color:#666;
  line-height:30px;
  margin-bottom:15px;
  font-size:17px;
}

/* ACCORDION */

.accordion{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.accordion-item{
  border:1px solid #e5e5e5;
  border-radius:14px;
  overflow:hidden;
}

.accordion-btn{
  width:100%;
  background:white;
  border:none;

  padding:24px 25px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  font-size:18px;
  font-weight:600;
}

.accordion-btn div{
  display:flex;
  align-items:center;
  gap:15px;
}

.accordion-btn div i{
  width:38px;
  height:38px;
  border-radius:10px;

  background:#f4c400;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:15px;
}

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

@media(max-width:1100px){

  .privacy-container{
    flex-direction:column;
  }

  .privacy-sidebar{
    width:100%;
  }

}

@media(max-width:900px){

  .privacy-topbar{
    padding:20px;
  }

  .privacy-nav{
    display:none;
  }

  .privacy-container{
    padding:40px 20px;
  }

  .privacy-header{
    flex-direction:column;
  }

}

@media(max-width:600px){

  .privacy-header h1{
    font-size:38px;
  }

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

  .accordion-btn{
    padding:20px;
    font-size:15px;
  }

  .privacy-sidebar{
    padding:20px;
  }

}
/* ACCORDION CONTENT */

.accordion-content{
  padding:0 25px 25px 25px;
}

.accordion-content p{
  margin-top:12px;
  color:#666;
  font-size:16px;
  line-height:28px;
}

/* POLICY BLOCKS */

.privacy-full-content{
  margin-top:20px;
}
.policy-block:first-child{
  margin-top:0;
}
.policy-block{
  margin-bottom:35px;
}

.policy-block h2{
  font-size:34px;
  margin-bottom:22px;
}

.policy-block p{
  color:#666;
  line-height:32px;
  font-size:17px;
  margin-bottom:15px;
}

.policy-block ul{
  padding-left:22px;
}

.policy-block ul li{
  margin-bottom:14px;
  color:#444;
  line-height:30px;
  font-size:17px;
}
html{
  scroll-behavior:smooth;
}

.privacy-sidebar li{
  transition:0.3s;
}

.privacy-sidebar li:hover{
  background:#f4c400;
  transform:translateX(5px);
}
