body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-hero {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-hero h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.gallery-hero p {
  font-size: 1em;
  line-height: 1.5;
  color: #444;
}

.gallery-section {
  max-width: 930px;
  margin: 0 auto;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-grid img {
  width: calc(33.333% - 10px);
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  object-fit: cover;
}

@media (max-width: 768px) {
    main {
    padding-top: 10px;
  }
  .gallery-grid img {
    width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .gallery-grid img {
    width: 100%;
  }
}
