footer{
  padding: 3rem !important;
}
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.floating-buttons .main-button {
  width: 50px;
  height: 50px;
  font-size: 20px;
  justify-content: center;
  align-items: center;
}

.floating-buttons .action-button {
  display: none;
  width: 45px;
  height: 45px;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0;
  color: white;
}

.floating-buttons.active .action-button {
  display: flex;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
    footer{
        text-align: center;
    }
    footer .d-flex{
        text-align: center !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
}