#banners-section {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
  }
  
  #swiper-banner {
    height: 100%;
  }
  
  #swiper-banner .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 150px;
  }
  
  .banner-content {
    border: 1.023px solid #FFF;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(5px);
    padding: 40px 60px;
    border-radius: 20px;
    max-width: 600px;
    color: #312783;
    animation: fadeInUp 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* выравнивание текста и кнопки по левому краю */
  }
  
  .banner-content h2 {
    color: var(--, #312783);
    font-family: Gilroy;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #312783;
  }
  
  .banner-content p {
    font-size: 18px;
    font-weight: 300;
    color: #312783; 
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
  }
  
  /* Стилизация кнопки с иконкой (звездой) */
  .banner-btn.btn {
    width: 234px;
    height: 53px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Gilroy', Arial, sans-serif;
    font-weight: 300;
    color: #312783;
    border: 1px solid #312783;
    border-radius: 17px;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    overflow: visible;
    
  }
  
  .banner-btn.btn:hover {
    background-color: rgba(49, 39, 131, 1);
    color: white;
  }
  
  .banner-btn.btn svg {
    position: absolute;
    top: -16px;
    left: 5px; /* вместо 10px — отрываем от края */
    width: 30px;
    height: 30px;
  }
  
  
  /* Стилизация пагинации */
#swiper-banner .swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: auto;
    gap: 10px;
    z-index: 10;
  }
  
  #swiper-banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  #swiper-banner .swiper-pagination-bullet:hover {
    background-color: rgba(37, 59, 131, 0.8);
  }
  
  #swiper-banner .swiper-pagination-bullet-active {
    background-color: #253B83;
    transform: scale(1.2);
  }
  
  /* Анимация появления контента */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Адаптивность */
  @media (max-width: 1024px) {
    #swiper-banner .swiper-slide {
      padding: 0 60px;
    }
  
    .banner-content h2 {
      font-size: 32px;
    }
  
    .banner-content p {
      font-size: 18px;
    }
  }
  
  @media (max-width: 768px) {
    #swiper-banner .swiper-slide {
      padding: 0 20px;
    }
  
    .banner-content {
      padding: 20px 30px;
    }
  
    .banner-content h2 {
      font-size: 26px;
    }
  
    .banner-content p {
      font-size: 16px;
    }
  }
  
