/* Global Styles */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 0;
}

/* Header */
header {
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

.tagline {
  color: #38bdf8;
  margin-top: 5px;
}

nav {
  margin-top: 20px;
}

nav a {
  color: #94a3b8;
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
}

nav a:hover {
  color: #38bdf8;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 80px 0;
}

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

.hero p {
  max-width: 600px;
  color: #cbd5e1;
}

/* Content */
.content h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.content li::before {
  content: "•";
  color: #38bdf8;
  position: absolute;
  left: 0;
}

/* Footer */
footer {
  background: #020617;
  border-top: 1px solid #1e293b;
  padding: 30px 0;
  font-size: 12px;
  color: #94a3b8;
}
