*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== BODY ===== */
body{
  background:#f8fafc;
  color:#222;
  line-height:1.6;
}

/* ===== NAVBAR ===== */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
}

.logo{
  font-size:22px;
  font-weight:bold;
  color:#2563eb;
}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.menu-btn{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ===== HERO ===== */
.hero{
  height:90vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:linear-gradient(135deg,#2563eb,#60a5fa);
  color:white;
}

.hero h1{
  font-size:48px;
}

.hero button{
  margin-top:20px;
  padding:12px 30px;
  border:none;
  border-radius:6px;
  background:white;
  color:#2563eb;
  font-weight:bold;
  cursor:pointer;
}

/* ===== SECTIONS ===== */
.section{
  padding:80px 10%;
  text-align:center;
}

.light-bg{
  background:#eef2ff;
}

/* ===== CARDS ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
  margin-top:40px;
}

.card{
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card i{
  font-size:32px;
  color:#2563eb;
  margin-bottom:15px;
}

/* ===== CONTACT ===== */
.contact-box{
  margin-top:30px;
}

.insta-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#e1306c;
  color:white;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}

.email-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 25px;
  background:#2563eb;
  color:white;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
}


/* ===== FOOTER ===== */
footer{
  padding:20px;
  text-align:center;
  background:#fff;
  margin-top:40px;
  box-shadow:0 -2px 10px rgba(0,0,0,0.05);
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  nav{
    display:none;
    flex-direction:column;
    position:absolute;
    right:0;
    top:60px;
    background:white;
    width:180px;
    box-shadow:0 5px 10px rgba(0,0,0,0.1);
  }

  nav a{
    padding:10px;
  }

  .menu-btn{
    display:block;
  }
}
