/* Careers Page Styling */
.job-card {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  border-left: 4px solid #004b6b;
}

.section-divider {
  margin: 40px 0;
  border: none;
  border-top: 2px solid #e0e0e0;
}

/* Application Form Styling */
.application-form {
  background: #e9f4f9;
  padding: 25px;
  border-radius: 6px;
  margin-top: 20px;
  border-left: 4px solid #004b6b;
}

.application-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.application-form button {
  background: #004b6b;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.application-form button:hover {
  background: #00364f;
}