* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1a1a1a;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: #0A2540;
  position: relative;
  height: 80px;
}

.logo {
  height: 70px !important;
  width: auto !important;
  display: block;
}

.nav {
  display: flex;
}

.nav a {
  color: #FF7A00;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.nav a:hover {
  color: #ffffff;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #FF7A00;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: #0A2540;
    position: absolute;
    top: 80px;
    right: 10%;
    width: 220px;
    padding: 20px;
    border-radius: 10px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    margin: 12px 0;
  }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0A2540, #1c3d63);
  color: white;
  padding: 120px 10%;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.btn {
  background: #FF7A00;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 25px;
}

/* SECTION */
.section {
  padding: 80px 10%;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* SERVICES */
.services {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* PRICING */
.pricing {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 260px;
  padding: 40px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.price-card ul {
  list-style: none;
  margin-top: 15px;
}

.price-card ul li {
  margin-bottom: 10px;
}

.highlight {
  background: linear-gradient(135deg, #FF7A00, #ff9a3d);
  color: white;
}

/* TESTIMONIALS */
.services .card p {
  margin-bottom: 10px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0A2540, #1c3d63);
  color: white;
  border-radius: 20px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
}

/* FOOTER */
footer {
  background: #0A2540;
  color: #bbb;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .services,
  .pricing {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .services,
  .pricing {
    flex-direction: column;
  }

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

  .section {
    padding: 60px 5%;
  }

  .card,
  .price-card {
    width: 100%;
  }
}