body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #F6F6F6;
  color: #333;
}

header {
  background: #1e1e1e;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 26px;
}

header a {
  color: #F5C81A;
  text-decoration: none;
}

section {
  padding: 30px 20px;
  max-width: 1100px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.description p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.features-heading {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.feature {
  background: #F5C81A;
  color: #000;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.cta {
  background: #F5C81A;
  color: #000;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  margin: 30px auto;
  border-radius: 5px;
  max-width: 1100px;
}

.cta a {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  display: inline-block;
  margin-top: 10px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.service-box {
  flex: 1 1 calc(33.333% - 20px);
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.service-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-box p {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin: 0;
}

footer {
  background: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 20px;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }

  .service-box {
    flex: 1 1 100%;
  }
}
