.container {
    margin-bottom: 50px;
  }
  
  h2 {
    text-align: center;
    padding: 20px;
  }
  
  /* Center the images inside each slide using vertical-align */
  .slide {
    text-align: center; /* Horizontally center the image */
    height: 136px; /* Set a fixed height for the slide */
    line-height: 150px; /* Set line-height equal to height for vertical centering */
  }
  
  .slide img {
    vertical-align: middle; /* Vertically aligns the image inside the line-height */
    max-width: 100%;
    max-height: 100%; /* Ensures the image fits within the slide */
  }
  
  /* Slick slider styling */
  
  /* Ensure the slick-slide is aligned correctly */
  .slick-slide {
    display: inline-block; /* Makes each slide inline to ensure they are on the same line */
    float: none; /* Remove the float to avoid breaking the row alignment */
    margin-right: 20px;
  }
  
  .slick-track {
    display: inline-block; /* Ensures the slides align horizontally */
    white-space: nowrap; /* Prevents the slides from breaking to a new line */
  }
  
  .slick-list {
    position: relative;
    display: block;
    overflow: hidden; /* Hide overflow to prevent scrollbars */
    margin: 0;
    padding: 0;
  }
  
  .slick-list:focus {
    outline: none;
  }
  
  .slick-slide img {
    display: inline-block; /* Display the images inline */
    vertical-align: middle; /* Vertically aligns the image within the slide */
  }
  
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
  }
  
  .slick-arrow.slick-hidden {
    display: none;
  }
  
  /* Prevent dragging issues */
  .slick-list.dragging {
    cursor: pointer;
  }
  