.jobs-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #222;
}

.jobs-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
}

.jobs-department {
  margin-bottom: 3rem;
}

.department-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #0077cc;
  border-bottom: 3px solid #0077cc22;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.department-roles {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.job-role {
  background: #E5E5E5;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-role:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.apply-button {
  align-self: flex-start;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  width: 100%;
}

.apply-button:hover {
  background-color: #005bb5;
  color: #fff;
}

.banner {
    position: relative;
    text-align: center;
    background-color: #E5E5E5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-bottom: 30px;
}