      /* Main Container */
      .careers-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
      }
      /* Intro Section */
      .careers-intro {
        text-align: center;
        margin-bottom: 60px;
      }
      .careers-intro h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
      }
      .careers-intro p {
        line-height: 1.6;
        margin-bottom: 15px;
      }
      /* Job Openings Section */
      .jobs-section {
        margin-bottom: 60px;
      }
      .jobs-section h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
      }
      .job-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
      }
      .job-card {
        flex: 1 1 calc(45% - 20px);
        max-width: calc(45% - 20px);
        background: #f9f9f9;
        padding: 20px;
        box-sizing: border-box;
        border-radius: 8px;
        text-align: left;
      }
      .job-card img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        margin-bottom: 15px;
      }
      .job-card h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
      }
      .job-card p {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #555;
      }
      .job-card a {
        display: inline-block;
        margin-top: 10px;
        background-color: #ea272d;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
      }
      /* Benefits Section */
      .benefits-section {
        margin-bottom: 60px;
      }
      .benefits-section h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
      }
      .benefits-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
      }
      .benefit-item {
        flex: 1 1 calc(30% - 20px);
        max-width: calc(30% - 20px);
        background: #fff;
        border: 1px solid #eee;
        padding: 20px;
        text-align: center;
        border-radius: 8px;
      }
      .benefit-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
      }
      .benefit-item h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
      }
      .benefit-item p {
        font-size: 1.3rem;
        color: #666;
      }
      /* Responsive Adjustments */
      @media (max-width: 768px) {
        .job-card {
          flex: 1 1 calc(90% - 20px);
          max-width: calc(90% - 20px);
        }
        .benefit-item {
          flex: 1 1 calc(45% - 20px);
          max-width: calc(45% - 20px);
        }
      }
      @media (max-width: 480px) {
        .job-card, .benefit-item {
          flex: 1 1 100%;
          max-width: 100%;
        }
      }
