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

header {
  background: #020617;
  padding: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 40px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #ffb510;
  color: black;
  text-decoration: none;
  border-radius: 8px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
}

.features div {
  max-width: 250px;
}

.cta {
  text-align: center;
  padding: 80px 20px;
  background: #020617;
}

footer {
  text-align: center;
  padding: 20px;
}