body{
  background:#fff;
  color:#07123f;
  overflow-x:hidden;
}

footer a{
  color:#cfd3e8;
  text-decoration:none;
}

footer a:hover{
  color:white;
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:#fff;
  color:#07123f;
  overflow-x:hidden;
}

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

/* NAVBAR */

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 0;
}

.logo{
  font-size:42px;
  font-weight:800;
  color:#000;
  letter-spacing:-1px;
}

.logo span{
  color:#18ba5e;
}

.nav-links{
  display:flex;
  gap:40px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#08134d;
  font-weight:600;
  font-size:14px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#18ba5e;
}

/* BUTTONS */

.btn{
  padding:18px 35px;
  border-radius:14px;
  font-weight:600;
  font-size:17px;
  cursor:pointer;
  border:none;
  transition:0.3s;
}

.primary{
  background:#18ba5e;
  color:white;
  box-shadow:0 10px 20px rgba(22,56,255,0.2);
}

.primary:hover{
  transform:translateY(-3px);
}

.secondary{
  background:white;
  border:2px solid #18ba5e;
  color:#18ba5e;
}

.secondary:hover{
  background:#18ba5e;
  color:white;
}

/* COMMON */

.section-title{
  text-align:center;
  font-size:52px;
  font-weight:800;
  margin-bottom:60px;
  color:#09104b;
  line-height:1.2;
}

.section-title span{
  color:#18ba5e;
}

/* FOOTER */

footer{
  background:#07123f;
  color:white;
  padding:70px 0 30px;
  margin-top:60px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
}

footer h4{
  margin-bottom:20px;
  font-size:22px;
}

footer ul{
  list-style:none;
}

footer li{
  margin-bottom:12px;
  color:#cfd3e8;
}

.footer-logo{
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.footer-logo span{
  color:#18ba5e;
}

.copyright{
  margin-top:40px;
  text-align:center;
  color:#cfd3e8;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:25px;
}

/* RESPONSIVE */

@media(max-width:1000px){

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

}

@media(max-width:700px){

  .nav-links{
    display:none;
  }

  .section-title{
    font-size:38px;
  }

}