body {
  font-family: system-ui;
  margin: 0;
  color: #333;
}

.container {
  width: 90%;
  margin: auto;
}

.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.menu {
  display: none;
  list-style: none;
}

.logo {
  color: #1565C0;
}

.cta {
  background: #1565C0;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
}

.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(#1565C0, #0D47A1);
  color: white;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.urgency {
  color: #FFD54F;
  font-weight: 600;
  font-size: 14px;
}

.trust {
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.section {
  padding: 60px 0;
  text-align: center;
}

.alt {
  background: #f5f5f5;
}

.grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  padding: 20px;
  flex: 1;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn {
  background: #25D366;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1DA851;
}

.urgency-form {
  font-size: 13px;
  color: #666;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50%;
  color: white;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}

@media (min-width: 768px) {
  .menu {
    display: flex;
    gap: 20px;
  }

  #menuBtn {
    display: none;
  }
}
