.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #008060;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.floating-cta:hover {
  background-color: #006848;
  transform: scale(1.1);
}
