/* Careers Page Specific Styles */
#careers {
  padding: 5rem 2rem;
}

#careers h2 {
  font-size: 3rem; /* Larger heading for careers page */
  margin-bottom: 2rem;
  text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center; /* Center the container */
}


/* Remove default list styles and add custom styling for job listings */
.job-listing {
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 5px;
  margin: 2rem auto; /* Center the listing horizontally */
  max-width: 600px; /* Limit width for better readability */
  
}

.job-description {
    text-align: left; /* Left align the job description text */
    display: inline-block; /* Allows centering of parent while aligning content left*/
}


#careers h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

#careers p {
  max-width: 800px;
  margin: 0 auto 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff; /* Example color, change as needed */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

/* Responsive Design for Careers Page */
@media (max-width: 768px) {
  #careers h2 {
    font-size: 2.5rem;
  }

  #careers li {
    padding: 1rem;
  }
}