.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.gallery-item {
  width: 150px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item a {
  text-decoration: none;
  color: #1A202C;
  font-weight: bold;
  display: block;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .gallery-item {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .gallery-item {
    width: 100px;
  }
}
