body {
  background-color: #f4f8fb;
  font-family: 'Georgia', serif;
  color: #333;
  margin: 0;
  padding: 0;
}

.gallery-container {
  max-width: 1000px;
  margin: 60px auto 80px auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-container h2 {
  font-size: 34px;
  color: #004a99;
  margin-bottom: 12px;
}

.gallery-container p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  font-weight: 500;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  cursor: pointer;
}