/* Reset & Base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background: #0a0f2c;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #0a0f2c, #1c2b5e);
  color: #fff;
}

.hero h2 {
  font-size: 2rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  background: #e05500;
}

/* Content */
.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

/* Footer */
footer {
  background: #0a0f2c;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
