.contact-support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f08026;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transition: background 0.2s, transform 0.2s;
}
.contact-support-btn:hover {
  background: #d66a1a;
  transform: translateY(-2px);
}
.contact-support-btn:active {
  transform: translateY(0);
}
