
.gallery-section {
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  padding: 32px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(30,30,30,0.12);
}

/* Tablet responsiveness */
@media (max-width: 1100px) {
  .gallery-section {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 24px 0;
  }
  .gallery-grid {
    gap: 16px;
  }
}

/* Mobile responsiveness */
@media (max-width: 700px) {
  .gallery-section {
    width: 100%;
    margin: 0;
    padding: 12px 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
    gap: 10px;
  }
}
 .centered-text-section {
      width: 60vw;
      margin: 0 auto;
      text-align: center;
      font-weight: bold;
 
      padding: 40px 0;
    }
    @media (max-width: 700px) {
      .centered-text-section {
        width: 90vw;
        font-size: 1.2rem;
        padding: 20px 0;
      }
    }