body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #2c3e50;
  color: #fff;
  padding: 1.5em 1em;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0.2em 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
}

.nav li a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav li a:hover {
  color: #f39c12;
}

section {
  padding: 2em 1em;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  margin-bottom: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h2 {
  color: #2c3e50;
  margin-top: 0;
}

.gallery {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 30%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

blockquote {
  background: #ecf0f1;
  border-left: 5px solid #2c3e50;
  margin: 1em 0;
  padding: 1em;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

input[type="text"], input[type="email"], textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

button {
  background: #2c3e50;
  color: #fff;
  padding: 0.8em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.3s ease;
}

button:hover {
  background: #1a252f;
}

footer {
  text-align: center;
  padding: 1em;
  background: #2c3e50;
  color: #fff;
  font-size: 0.9em;
}