body {
  font-family: 'Segoe UI', sans-serif;
  background-color:  #E8D8C3;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #E8D8C3; 
  padding: 1.5em 0;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

nav {
  background-color: #FDF6EC; /* Soft contrast with header background */
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em 0;
}

header img {
  height: 200px; /* Increased logo size */
}

nav a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 2em auto;
  background-color: #FDF6EC;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.image-links {
  display: flex;
  justify-content: space-around;
  margin-top: 2em;
}

.image-links a {
  text-align: center;
  color: #333;
  text-decoration: none;
}

.image-links img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.5em;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1em;
}

.photo-gallery img {
  width: 100%;
  border-radius: 6px;
}

.download-list {
  list-style: none;
  padding: 0;
}

.download-list li {
  margin: 1em 0;
}

.download-list a {
  color: #0077cc;
  text-decoration: none;
}

.download-list a:hover {
  text-decoration: underline;
}
