body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #1b1c3e, #341f68);
  color: white;
}
.hero {
  padding: 2rem;
  text-align: center;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  color: white;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.btn {
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.primary {
  background-color: #6344f5;
  color: white;
}
.secondary {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}