/* Careers Page Styles */
.careers-section {
    width: 75%;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  .careers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #34495e;
  }
  
  #job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .job-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .job-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .job-card p {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2c3e50;
  }
  
  .job-card .apply-button {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
  }
  
  .job-card .apply-button:hover {
    background-color: #0056b3;
  }
  