.gallery-container {
  margin: 50px 70px;
  padding: 20px;
}

.gallery-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-container {
    padding: 0;
    margin: 0;
    margin-top: 60px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 0px;
    gap: 0;
  }

  .gallery-item {
    margin: 0;
    width: 100%;
  }
}
