.whatsapp-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

.chat-button {
  background-color: #fff;
  border: 2px solid #00a884;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  color: #000;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.chat-button:hover {
  background-color: #00a884;
  color: #fff;
}

.whatsapp-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.whatsapp-icon img:hover {
  transform: scale(1.1);
}
