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

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.hero {
  background: url('assets/hero-image.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.cta-button {
  background: #0077cc;
  color: white;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  padding: 40px 20px;
  background: white;
  text-align: center;
}

.feature-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  max-width: 300px;
}

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