/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background-color: #0f172a;
  color: white;
  line-height: 1.6;
}

/* NAVBAR */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #020617;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #22c55e;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #22c55e;
}

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

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  color: #cbd5f5;
}

.cta-button {
  background: #22c55e;
  color: black;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-button:hover {
  background: #16a34a;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  gap: 20px;
}

.feature {
  background: #020617;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
  text-align: center;
}

.feature h3 {
  margin-bottom: 10px;
  color: #22c55e;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  margin-top: 40px;
}