body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  background-color: #0d0d0d;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #1a1a1a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
  color: #ff4c29;
  font-size: 1.8rem;
}

nav a {
  color: #cccccc;
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff4c29;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  color: #ff4c29;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #ff4c29;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #e63e1d;
}

footer {
  background-color: #1a1a1a;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
