   /* Шапка (hero) із сучасним градієнтом */
    .hero-section {
      background: linear-gradient(45deg, #05BFDB, #0A2647);
      color: #fff;
      padding: 100px 0;
      text-align: center;
    }
    .hero-section h1 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero-section p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 1.5rem;
    }

    /* Кастомна кнопка із плавним переходом */
    .btn-cta {
      background: linear-gradient(45deg, #06A77D, #0EAD69);
      border: none;
      color: #fff;
      transition: 0.3s ease;
      font-weight: 600;
    }
    .btn-cta:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Відгуки - картки із зірочками */
    .review-stars {
      color: #f3ca3e; /* Золотистий колір зірочок */
      margin-bottom: 0.5rem;
    }

    /* Анімація при наведенні на картки */
    .card-hover:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }