.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery img {
  width: 150px;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.gallery img {
  width: 150px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease;
  display: block;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 20px;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
    image-rendering: auto;
}
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}