/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 117:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .why-us-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .why-us-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .why-us-section > p {
    font-size: 1rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    color: #555;
    text-align: center;
  }
  .why-us-carousel {
    position: relative;
  }
  .why-us-track {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
  }
  .why-us-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #fff;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    margin-left: 0;
    margin-right: 0;
  }
  .why-us-item img {
    max-width: 80px;
    margin-bottom: 15px;
  }
  .why-us-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .why-us-item p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
  }
  .why-us-arrow {
    display: none;
  }
  @media (min-width: 768px) {
    .why-us-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: visible;
      gap: 2rem;
    }
    .why-us-item {
      margin-left: 0;
      margin-right: 0;
    }
  }
  @media (max-width: 767px) {
    .why-us-track {
      padding-left: 0;
      padding-right: 0;
    }
    .why-us-item {
      margin-left: 12px;
      margin-right: 12px;
    }
    .why-us-carousel {
      position: relative;
    }
    .why-us-arrow {
      display: block;
      position: absolute;
      top: 35%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      border: 1px solid #ddd;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
    }
    .why-us-arrow.left { left: 0; }
    .why-us-arrow.right { right: 0; }
    .why-us-arrow svg {
      width: 18px;
      height: 18px;
      stroke: #333;
    }
  }
</style>