body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a1a;
  color: #f5f5f5;
}

header {
  background-color: #1c1c2b;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #00ffff;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ffffff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #00ffff;
}

.contact-section {
  padding: 30px 20px;
  max-width: 600px;
  margin: auto;
}

.contact-section h2 {
  color: #00ffff;
  margin-bottom: 10px;
}

.contact-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.contact-section form {
  display: flex;
  flex-direction: column;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  background-color: #222;
  color: white;
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: 2px solid #00ffff;
}

.contact-section button {
  padding: 12px;
  font-size: 1em;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: #00dddd;
}

.form-status {
  margin-top: 10px;
  font-size: 0.95em;
  color: #90ee90;
}

footer {
  background-color: #1c1c2b;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 0.9em;
}
