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

header.hero {
  background: url("erie-canal.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

header.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
}

h1, h2 {
  margin: 0.5em 0;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #1565c0;
}

section {
  padding: 3rem 2rem;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  margin: 0.5rem 0;
}

footer {
  text-align: center;
  background: #eee;
  padding: 1rem;
}