.banner-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin: 0 auto;
  position: relative;
}

.banner-section .banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.banner-section .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.banner-section .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.banner-section .banner-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
  max-width: 900px;
}

.banner-section .banner-title span {
  display: block;
  margin-top: 10px;
}

.banner-section .banner-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* Стили кнопки — теперь она автономная */
.banner-section .banner-button {
  background-color: #0D96F7;
  color: white;
  border: none;
  border-radius: 24px; /* скругление со всех сторон */
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner-section .banner-button:hover {
  background-color: #0a7dd6;
}

/* Адаптивность для планшетов (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner-section .banner-title {
    font-size: 40px;
  }
  
  .banner-section .banner-button {
    padding: 16px 40px;
    font-size: 16px;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .banner-section .banner-title {
    font-size: 32px;
  }
  
  .banner-section .banner-content {
    padding: 60px 0;
  }
  
  .banner-section .banner-button {
    width: 100%;
    max-width: 320px;
    padding: 16px;
    font-size: 16px;
  }
}

/* Адаптивность для маленьких экранов */
@media (max-width: 480px) {
  .banner-section .banner-title {
    font-size: 28px;
  }
  
  .banner-section .banner-title span {
    margin-top: 8px;
  }
  
  .banner-section .banner-button {
    padding: 14px;
    font-size: 15px;
  }
}