/* Center-align paragraphs for readability */
p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Center all elements within container for first two sections */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ensure buttons are centered and spaced */
.btn {
  display: block;
  margin: 20px auto;
}

/* Ensure consistent section padding */
.section-padding {
  padding: 50px 20px;
}

/* Gallery grid styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 250px;
  gap: 15px;
}

/* Gallery image styling */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}