body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #f4f6f2;
  color: #2b2b2b;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #2f4f2f;
  color: white;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('wald1.jpg') center/cover no-repeat;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #6b8e23;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.features {
  display: flex;
  gap: 20px;
  margin: 40px auto;
}

.feature {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

footer {
  background: #2f4f2f;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 40px;
}

.header-brand {
display: flex;
align-items: center;
gap: 15px;
}

.header-logo {
height: 70px;
width: auto;
display: block;
}

.header-brand h1 {
margin: 0;
}