body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .logo {
  height: 50px;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: orange;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
}

#services ul {
  list-style: none;
  padding: 0;
}

#services li {
  padding: 5px 0;
}

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery img {
  width: 30%;
  border-radius: 4px;
}

form label {
  display: block;
  margin-bottom: 10px;
}

form input,
form select,
form button {
  padding: 8px;
  margin-top: 5px;
  width: 100%;
  max-width: 300px;
}

#result {
  margin-top: 20px;
  font-weight: bold;
}

footer {
  background: #f3f3f3;
  text-align: center;
  padding: 20px;
}
