body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #222;
  }

  .site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  
  .logo {
    max-width: 120px;
    height: auto;
  }
  


  .container {
    max-width: 960px;
    margin: auto;
    padding: 2rem;
  }
  .hero {
    padding: 2rem 0;
  }
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .hero-text {
    flex: 1;
    min-width: 280px;
  }
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
  }
  .hero-img-wrapper {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }
  .hero-img {
    max-width: 240px;
    height: auto;
  }
  .whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

.features {
  margin: 3rem 0;
}
.features h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.features ul {
  list-style: none;
  padding: 0;
}
.features li {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}
.features li::before {
  content: '\2714';
  color: #25D366;
  margin-right: 0.5rem;
}
form {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
}
form input, form select, form button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
form button {
  background-color: #222;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-email {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #444;
}
.contact-email a {
  color: #007bff;
  text-decoration: none;
}



.hero-img {
    max-width: 300px;
    height: auto;
    margin: 1.5rem auto;
    display: block;
  }

  .disclaimer {
    font-size: 0.75rem;
    color: #777;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  