
body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0;
  background: #f5f5f5;
  color: #333;
}
header {
  background: #406d3f;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}
header img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 1rem;
}
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
  background: white;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1, h2 {
  margin-top: 0;
}
ul {
  padding-left: 1.2rem;
}
form input,
form textarea,
form button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form button {
  background: #406d3f;
  color: white;
  border: none;
  cursor: pointer;
}
form button:hover {
  background: #325b31;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #ccc;
  margin: 1rem 0;
  padding-left: 1rem;
}
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #efefef;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
