:root {
  --bg: #f9fafb;
  --text: #222;
  --accent: #4f46e5;
  --light: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: var(--light);
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: var(--light);
  color: var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--light);
}

.section {
  padding: 80px 20px;
}

.section.alt {
  background: #eef2ff;
}

ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

ul li {
  margin: 10px 0;
}

footer {
  background: var(--accent);
  color: var(--light);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
