body {
  background: #181a20;
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  margin: 0;
  min-height: 100vh;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  background: #23262f;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  padding: 32px 24px 16px 24px;
}
header {
  text-align: center;
  margin-bottom: 32px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00e6a8;
  margin: 0 0 8px 0;
}
.subtitle {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.intro, .hiring {
  margin-bottom: 32px;
}
h2 {
  color: #00e6a8;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
a {
  color: #00e6a8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  padding-left: 20px;
}
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.apply-form input, .apply-form button {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}
.apply-form input {
  background: #23262f;
  color: #f1f1f1;
  border: 1px solid #33364a;
}
.apply-form input:focus {
  outline: 2px solid #00e6a8;
}
.apply-form button {
  background: linear-gradient(90deg, #00e6a8 0%, #00b8d9 100%);
  color: #181a20;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.apply-form button:hover {
  background: linear-gradient(90deg, #00b8d9 0%, #00e6a8 100%);
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-top: 32px;
}
