.elementor-1101 .elementor-element.elementor-element-a83e177{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9693a26 */.buttons {
  display: flex;
  justify-content: center;
  gap: 8px; /* расстояние между кнопками */
  flex-wrap: wrap; /* если места мало, переносятся вниз */
}

.btn {
  display: inline-block;
  padding: 6px 14px;   /* уменьшенный внутренний отступ */
  border-radius: 6px;  /* закругление углов */
  text-decoration: none;
  background: #006d5b;
  color: #fff;
  font-size: 13px;     /* чуть меньше текст */
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #004c40;
  transform: scale(1.05); /* лёгкий эффект при наведении */
}

.btn.whatsapp {
  background: #25D366;
}

.btn.whatsapp:hover {
  background: #1ebe5b;
}

/* Адаптация для мобильных */
@media (max-width: 480px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    text-align: center;
  }
}/* End custom CSS */