.gallery-section {
    padding-bottom: 100px;
    position: relative;
    top: -100px;
  }
  
  .gallery-container {
    max-width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .gallery-image1,
  .gallery-image2,
  .gallery-image3 {
    width: 25%;
    height: auto;
    object-fit: contain;
  }
  
  @media (max-width: 600px) {
    .gallery-container {
      flex-direction: column;
      gap: 30px;
    }
    .gallery-image1 {
      width: 70%;
      height: auto;
      margin: 10px auto;
      transform: translateX(10px);
      margin-bottom: 0;
    }
    .gallery-image2 {
      width: 80%;
      height: auto;
      margin: 10px auto;
      transform: translateX(0%);
      margin-bottom: 20px;
    }
    .gallery-image3 {
      width: 80%;
      height: auto;
      margin: 10px auto;
    }
  }
  