/* WhatsApp Button */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: transparent;
  color:#147738;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  font-family: Poppins;
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
  gap: 8px; /* Spacing between icon and text */
  width: 100%;
  height: 58px;
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-button:hover {
  background-color: #147738;
  text-decoration: none;
  color: #FFF;
}

