.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .slides {
    position: relative;
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }
  
  .slide {
    display: block;
    width: 100%;
    flex-shrink: 0;
    min-width: 0;
  }
  
  /* Background colors */
  .slide.bg-mint {
    background-color: #EAF7F5;
  }
  
  .slide.bg-paper {
    background-color: #F7F8F9;
  }
  
  .slide.bg-grey {
    background-color: #F1F4F8;
  }
  
  .slide.bg-green {
    background-color: #EEF7F0;
  }
  
  .slide-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .slide-text {
    flex: 1;
  }
  
  .slide-text h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .slide-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .hero-slider .btn-primary {
    display: inline-block;
    padding: 12px 22px;
    background: #000 !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    transition: opacity 0.2s;
  }
  
  .hero-slider .btn-primary:hover {
    opacity: 0.9;
  }
  
  .slide-image {
    flex: 1;
    text-align: center;
  }
  
  .slide-image img {
    max-height: 320px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    box-shadow: none;
    filter: none;
  }
  
  /* NAV */
  .hero-slider .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6) !important;
    color: #fff !important;
    border: none;
    font-size: 24px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 100;
    transition: background 0.2s;
    line-height: 1;
    pointer-events: auto;
    user-select: none;
  }
  
  .hero-slider .nav:hover {
    background: rgba(0, 0, 0, 0.8) !important;
  }
  
  .hero-slider .nav:active {
    background: rgba(0, 0, 0, 0.9) !important;
  }
  
  .hero-slider .nav.prev { left: 15px; }
  .hero-slider .nav.next { right: 15px; }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .slide-inner {
      flex-direction: column;
      text-align: center;
      padding: 30px 16px;
    }
  
    .slide-text h2 {
      font-size: 1.6rem;
    }
  
    .slide-image img {
      max-height: 260px;
    }
  }
  