.fixed-contact-buttons {
  position: fixed;
  right: 0;
  top: 70%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  align-items: flex-end;
}

.sticky-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.sticky-button:hover {
  transform: scale(1.1);
}

.call-button {
  background-color: #4caf50;
  color: white;
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
}
