/* Calendly Randevu Butonu Stil Ayarları */
.calendly-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #009dff9c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.calendly-button img {
  width: 30px;
  height: 30px;
}

.calendly-button:hover {
  background-color: #00d776;
}

/* Mobil Uyumlu Tasarım */
@media only screen and (max-width: 600px) {
  .calendly-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }

  .calendly-button img {
    width: 25px;
    height: 25px;
  }
}
