body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
}

header {
  background: #1a4d2e;
  color: white;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.logo span {
  font-weight: normal;
  font-size: 0.9em;
}

nav a {
  color: white;
  margin-left: 1em;
  text-decoration: none;
  font-weight: bold;
}

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

.hero {
  background: url('lawn-background.jpeg') no-repeat center center/cover;
  padding: 5em 2em;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero .btn {
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background: #2e7d32;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

footer {
  background: #1a4d2e;
  color: white;
  text-align: center;
  padding: 1em;
}

body {
  background-image: url('lawn-background.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
