body {
  background-color: #fff8e1;
  font-family: 'Outfit', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffcc00;
  padding: 1.5em 1em;
  text-align: center;
}

header h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #000;
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: #d00000;
  text-decoration: none;
  margin: 0 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
  color: #a00000;
}

main {
  max-width: 900px;
  margin: 3em auto;
  padding: 0 1em;
}

h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: #d00000;
  margin-bottom: 1em;
}

.about-careers p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 2em;
}

.jobs .job-listing {
  background-color: #ffe9b3;
  border-left: 5px solid #d00000;
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 6px;
}

.jobs h4 {
  margin: 0 0 0.5em 0;
  font-size: 1.2em;
  font-weight: 700;
}

.application form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 2em;
}

.application input,
.application textarea,
.application button {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  padding: 0.75em;
  border: 2px solid #d00000;
  border-radius: 5px;
  background: white;
}

.application textarea {
  resize: vertical;
}

.application label {
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

.application button {
  background-color: #d00000;
  color: #fff8e1;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.application button:hover {
  background-color: #a00000;
}

footer {
  background-color: #d00000;
  color: #fff8e1;
  text-align: center;
  padding: 1em;
  font-size: 0.9rem;
  margin-top: 4em;
  font-family: 'Outfit', sans-serif;
}
