body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #ffd800;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.logo .highlight {
  color: #00a2ff;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #e0f0ff;
}

.content {
  padding: 40px 20px;
}

ul {
  list-style-type: disc;
  padding-left: 40px;
}

.btn {
  display: inline-block;
  background: #00a2ff;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

footer {
  text-align: center;
  background: #222;
  color: #fff;
  padding: 20px;
}