/* Add to your existing CSS file */

.bannersSection {
    width: 100%;
    padding: 1rem;
  }
  
  .bannersComponent {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .bannerContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 6;
  }
  
  .bannerTrack {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .bannerSlide {
    flex: 0 0 100%;
    height: 100%;
  }
  
  .bannerImg {
    width: 23rem;
    height: 10.625rem;
    object-fit: cover;
    display: block;
  }
  
  .bannerIndicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
  
  .indicator.active {
    background-color: rgba(255, 255, 255, 1);
    width: 24px;
    border-radius: 4px;
  }