* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

header {
  background: #2e5c2e;
  padding: 15px 0;
  color: #fff;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  height: 100px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: url('https://source.unsplash.com/1600x600/?hill,nature') center/cover no-repeat;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 10px;
}

.container {
  width: 90%;
  margin: 40px auto;
  border: 5px;
}

h2 {
  margin-bottom: 20px;
  color: #2e5c2e;
}

.gallery-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #2e5c2e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}
