
body {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  background: #0a0f24;
  color: #f5f5f5;
}

header {
  background: #000a1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  max-width: 50px;
  height: auto;
}

.logo h1 {
  font-size: 1.6rem;
  margin: 0;
  color: #08fdd8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  color: #08fdd8;
}

.hero {
  background: url('bg.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #08fdd8;
}

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

.cta-btn {
  background: #08fdd8;
  color: #0a0f24;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #00c2b2;
}

footer {
  text-align: center;
  background: #000a1f;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.page-content {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: auto;
  color: #f5f5f5;
}

.page-content h2 {
  color: #08fdd8;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-content ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
  padding-top: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border-radius: 4px;
  border: none;
  font-family: 'Roboto Mono', monospace;
}
