.hero-section {
  position: relative;
  min-height: 90vh; /* Уменьшаем высоту для мобильных */
  background-size: cover;
  background-position: center;
  background-attachment: local; /* Убираем параллакс-эффект для iOS */
  display: flex;
  background-image: url('/src/media/img/header-bg-usa-desktop.png');
  align-items: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

/* Оптимизация для мобильных */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    background-image: url('/src/media/img/hero-mobile.png');
    background-position: bottom center;
  }

  .hero-content {
    padding: 1.5rem 0;
  }

  .display-4 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .bg-warning h5 {
    font-size: 1rem !important;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
  }

  .display-4 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.25rem !important;
  }

  .lead {
    font-size: 0.9rem;
  }
}
