body{
  margin:0;
  font-family:'Lato', sans-serif;
  background:#f6f1e8;
  color:#1f1f1f;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:white;
}

.logo{
  font-weight:700;
}

.menu{
  display:flex;
  gap:20px;
}

.menu a{
  text-decoration:none;
  color:#1f1f1f;
  font-size:14px;
}

.btn{
  background:#3a97c9;
  color:white;
  padding:10px 16px;
  border-radius:20px;
  text-decoration:none;
}

/* HERO */
.hero{
  text-align:center;
  padding:80px 8%;
}

.hero h1{
  font-size:42px;
  margin-bottom:15px;
}

.hero p{
  max-width:600px;
  margin:0 auto 25px;
  opacity:0.8;
}

.buttons{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.primary{
  background:#3a97c9;
  color:white;
  padding:12px 20px;
  border-radius:25px;
  text-decoration:none;
}

.secondary{
  background:#f5c84c;
  color:#1f1f1f;
  padding:12px 20px;
  border-radius:25px;
  text-decoration:none;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
  padding:60px 8%;
}

.card{
  background:white;
  padding:25px;
  border-radius:15px;
  text-align:center;
}
