
    @media (max-width: 768px) {
      .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    /* PRODUCT SECTION */
    #aboutUs {
      background: var(--bg-light);
      padding: 80px 0;
    }

    #aboutUs h3 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 15px;
    }

    #aboutUs img {
      width: 100%;
      max-width: 330px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.4s;
    }

    #aboutUs img:hover {
      transform: scale(1.05);
    }

    .contact_btn {
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .contact_btn:hover {
      background-color: #a00000;
      transform: translateY(-2px);
    }

    /* SCROLLABLE PRODUCTS SECTION */
    .product-section {
      padding: 50px 0;
      background: #fff;
    }

    .scroll-container {
      display: flex;
      gap: 20px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom: 15px;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
    }

    .scroll-container::-webkit-scrollbar {
      height: 4px;
    }

    .scroll-container::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }

    .product-card {
      width:360px;
      height: 360px;
      flex: 0 0 auto;
      background: #ffe8e8;
      text-align: center;
      padding: 0px 0px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
       scroll-snap-align: start;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

    .product-card img {
      width: 100%;
      height: 40%;
      margin-bottom: 15px;
    }

    .product-card h5 h6{
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .product-card .btn {
      background: var(--primary-color);
      color: #fff;
      border: none;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 4px;
    }

    .product-card .btn:hover {
      background: #ffffff;
    }

    /* Scroll Buttons */
    .scroll-btn {
      background: var(--primary-color);
      border: none;
      color: #fff;
      padding: 8px 10px;
      border-radius: 50%;
      position: absolute;
      top:50%;
      transform: translateY(-50%);
      cursor: pointer;
      z-index: 10;
      transition:  0.3s ease;
    }

    .scroll-btn:hover {
      background: #ad0f0f;
    }

    .scroll-left { left: 1px; }
    .scroll-right { right: 1px; }

    @media (max-width:320px) and (min-width:250px)
    {
       .scroll-container {
      display: flex;
      gap: 10px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom: 15px;
    }
      .product-card{
       width:280px;
      height: 200px;
       margin-left:0px;
      padding-left: 0px;
    }
     .product-card img {
      width: 80%;
      height: 40%;
      margin-left:0px;
      padding-left: 0px;
      margin-bottom: 15px;
     }
    }
   @media (max-width:390px) and (min-width:321px){
  
      .scroll-container {
      display: flex;
      gap: 20px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom: 15px;
    }
    .product-card{
      width:365px;
      height: 365px;
    }
    }
  @media (max-width:430px) and (min-width:391px) 
  {
      .scroll-container {
      display: flex;
      gap: 10px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom: 15px;
    }
    .product-card{
       width:420px;
      height: 420px;
    }}
    @media (max-width:540px) and (min-width:431px){
       .scroll-container {
      display: flex;
      gap: 10px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom: 15px;
    }
    .product-card{
       width:520px;
      height: 520px;
    }}
    
     @media (max-width: 699px) and (min-width: 541px)
    {
      .treated-list ul {
        columns: 1;
      }
      .scroll-container {
          display: flex;
          gap: 10px;
          overflow-x:auto;
          scroll-behavior:smooth;
          padding-bottom: 0px;
        }
        .product-card{
          width:250px;
          height: 250px;
        }
    }
    @media (max-width: 900px) and  (min-width:700px){
      #aboutUs {
        text-align: center;
      }

      #aboutUs img {
        margin-bottom: 20px;
      }
       .scroll-container {
      display: flex;
      gap: 10px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom: 0px;
    }
    .product-card{
       width:366px;
      height: 366px;
    }}
    
   
@media (max-width:1030px) and (min-width:900px)
{
    .product-card{
       width:320px;
      height: 320px;
    }
    .scroll-container {
      gap: 10px;
    }
  }
   /* Highlight */
 .highlight {
  background-color: #fff3cd;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* Feature & Condition Lists */
.feature-list ul {
  list-style-type: circle;
  margin-top: 10px;
  margin-left: 25px;
}

.treated-list ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style-type: square;
}

