.products-section {
    background-color: #f3f3f3;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
  }

  .products-section h2 {
    font-size: 24px;
    color: #ce2a2a;
    margin-bottom: 20px;
  }

  .carousel-container-with {
    position: relative;
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
  }

  .carousel-with {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }

  .card-with {
    flex: 0 0 calc(100% / 3);
    box-sizing: border-box;
    margin: 10px;
    background-color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    transition: transform 0.5s ease;
  }

  .card-with a {
    color: #696969;
    text-decoration: none;
    font-size: 16px;
  }
  
  .card-with a:hover {
    color: #ce2a2a; 
    text-decoration: underline; 
  }
  .card-with:hover {
    transform: scale(1.05);
  }

  .card-with img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }
  @media (max-width: 1024px) and (min-width: 768px) {
    .card-with {
      flex: 0 0 calc(100% / 3); 
    }
  }
  @media (max-width: 768px) and (min-width: 480px) {
    .card-with {
      flex: 0 0 calc(100% / 2); 
    }
  }
  @media (max-width: 480px) {
    .card-with {
      flex: 0 0 100%; 
    }
  }