  .swiper {
    width: 100%;
    height: 500px;
  }

  .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; 
    justify-content: center;
  }

  .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.0); 
    z-index: 1;
  }

  .slide-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    font-family: sans-serif;
    width: 100%;
    max-width: 1375px; 
    margin: 0 auto;
    padding: 0 0 0 20px; 
    box-sizing: border-box;
  }

  .slide-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    max-width: 800px;
  }

  .slide-subtitle {
    font-size: 20px;
    max-width: 800px;
  }

  .swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
  }

  @media (max-width: 768px) {
    .swiper {
      height: 350px;
    }
    .slide-title {
      font-size: 20px;
    }
    .slide-subtitle {
      font-size: 14px;
    }
    .swiper-button-next, .swiper-button-prev {
      display: none !important;
    }
  }