.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 16px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background-color: #1ebd5b;
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-text {
  font-weight: bold;
}