#main{
    margin-top: 65px;
}

/* Products Section */
.products {
    padding: 30px 0 20px 0;
  }
  
  .product-box {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
  }
  
  .product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .product-img img {
    padding: 5px;
    width: 140px;
    height: 150px;
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
  }
  
  .product-content {
    padding: 20px 10px 10px 10px;
  }
  
  .product-list {
    list-style: square;
    padding: 0;
    margin: 0;
  }
  
  .product-list li::marker {
    color: #71BF44; /* Change this to your desired color */
}

  .product-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
  }
  



  /* Custom Styles for Brands Section */
.brands {
    padding: 30px 0 5px 0;
  }
  
  .brands-column {
    text-align: center;
  }
  
  .brands-title {
    color: #71BF44; /* Green color for titles */
    margin-bottom: 2px;
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .brand-logo img {
    width: 80px; /* Fixed width */
    height: 65px; /* Fixed height */
    object-fit: contain; /* Ensures the logo fits within the container */
    margin: 0 auto; /* Centers the logo */
  }
  

  .local-img {
    width: 150px !important; /* Fixed width */
    height: 150px !important; /* Fixed height */
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .brands-column {
      margin-bottom: 20px; /* Adds space between columns on small screens */
    }
  }