body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #004aad;
  color: white;
  padding: 20px;
  text-align: center;
}

.gallery-section {
  padding: 40px 20px;
  text-align: center;
}

.gallery-section h2 {
  margin-bottom: 20px;
  color: #004aad;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.photo {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.photo img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.photo img:hover {
  transform: scale(1.1);
}

footer {
  background: #004aad;
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: 30px;
}
