body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fdfb;
  color: #333;
  overflow-x: hidden;
}

header {
  background: #0f7c54;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.lang-btn button {
  margin: 5px;
  padding: 6px 12px;
  cursor: pointer;
  border: none;
}

.lang-btn button.active {
  background: #ffffff;
  color: #0f7c54;
  font-weight: bold;
  border-radius: 4px;
}

.hero {
  background: #dff3eb;
  padding: 40px;
  text-align: center;
  font-size: 22px;
}

section {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* ✔ TICK MARKS */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  display: flex;
  margin-bottom: 10px;
}
ul li::before {
  content: "✔";
  color: green;
  margin-right: 10px;
}

/* 🌐 LANGUAGE POPUP */
.lang-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.lang-popup-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 280px;
  text-align: center;
}

/* 📍 CONTACT */
#contact a {
  color: #0f7c54;
  text-decoration: none;
  font-weight: bold;
}

/* ⭐ REVIEWS */
.review-btn {
  display: inline-block;
  background: #4285F4;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}

/* ⚠ DISCLAIMER */
.disclaimer {
  background: #fff3cd;
  font-size: 14px;
}

/* 💬 FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 2147483647;
}

@media (max-width: 480px) {
  .whatsapp-float span {
    display: none;
  }
}
