.btn-whatsapp-invite {
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}

.btn-whatsapp-invite:hover {
  background-color: #1ebd5a;
  text-decoration: none;
  color: white;
}

.btn-whatsapp-invite i {
  font-size: 20px;
  margin-right: 8px;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease-in-out;
  text-decoration:none;
}

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

.whatsapp-icon {
  font-size: 24px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: #fff;
  padding: 12px 14px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-align: center;
  text-decoration:none;
}

.back-to-top:hover {
  background: #0056b3;
}

.gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
}

.gdpr-banner button {
  margin-left: 15px;
}