 .job-box {
    background: #f0f4f8;
    padding: 40px 30px;
    border-radius:0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    max-width: 100%;
    margin: auto;
  }

  .job-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
  }

  .job-title {
    font-size: 22px;
    margin: 0 0 5px;
    color: #333;
  }

  .job-location {
    margin: 5px 0;
    font-weight: bold;
    color: #666;
  }

  .job-section-title {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
  }

  .job-section-title:first-of-type {
    margin-top: 0;
  }

  .job-list {
    list-style: none;
    padding-left: 0;
}

.job-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
}

.job-list li .checkmark {
    position: absolute;
    left: 0;
    top: 1px;
    color: #3a7bd5; /* Elegantes Grün */
    font-weight: normal;
    font-size: 18px;
    font-family: "Segoe UI Symbol", "Arial", sans-serif;
}



  .apply-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
    transition: all 0.4s ease;
    margin-top: 20px;
  }

  .apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(58, 123, 213, 0.4);
  }