/* Основной стиль кнопки */
.custom-button {
  background-color: #ffa733;
  color: #1e1e1e;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

/* Эффект при наведении */
.custom-button:hover {
  background-color: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
