@media (max-width:768px){

.navbar{
    padding:16px;
}

.links{
    display:none;
}

.hero{
    padding:40px 20px;
    text-align:center;
}

.hero h1{
    font-size:34px;
}

.section{
    padding:30px 18px;
}

.cards{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.card{
    width:100%;
    box-sizing:border-box;
}

.site-footer-mini{
    flex-direction:column;
    gap:14px;
    text-align:center;
}

}


@media (max-width: 768px) {


  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  position: sticky;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}


@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    flex-direction: column;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }
}
.hamburger {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.hamburger i {
  color: #1e2a3a;
}
.hamburger {
  position: absolute;
  top: 15px;
  left: 15px;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 768px) {

  .hamburger {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;  
    z-index: 2000;
    background: transparent;
    border: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 50px;   
    left: 10px;  
    width: 200px; 
    flex-direction: column;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .nav-links.active {
    display: flex;
  }
}


@media (max-width: 768px) {
  .site-footer-mini {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:8px
  }

  .footer-left,
  .footer-center,
  .footer-social {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-center a {
    margin: 0 8px;
  }

  .footer-social a {
    margin: 0 6px;
  }
}