/* Base Reset & Font */
body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #0e0e0e;
  color: #f1f1f1;
  line-height: 1.6;
}

header {
  background: #292929;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
 font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

nav {
  margin-top: 1.5rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #cccccc;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

/* Highlighted CTA button */
nav a.cta {
  background: #f1f1f1;
  color: #121212;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

nav a.cta:hover {
  background: #ffffff;
  color: #000;
}

/* Section Styling */
section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: auto;
}

section h2 {
  font-size: 2rem;
  color: #fefefe;
  margin-bottom: 1rem;
}

section p, section ul, section ol {
  color: #ccc;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #333;
  background-color: #111;
}