body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

.careers-section, .job-details, .application-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 2rem;
}

h1, h2, h3 {
  color: #004f49;
  font-weight: bold;
}

ul {
  padding-left: 1.5rem;
}

.apply-btn {
  display: inline-block;
  background: #e60000;
  color: white;
  padding: 0.6rem 1.2rem;
  margin-top: 1rem;
  border-radius: 5px;
  text-decoration: none;
}

.apply-btn:hover {
  background: #b30000;
}

.application-form form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.application-form input,
.application-form textarea,
.application-form button {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.application-form button {
  background-color: #004f49;
  color: white;
  cursor: pointer;
}

.application-form button:hover {
  background-color: #006e67;
}
