
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #06396b;
  }

  .career-description {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 4rem;
    color: #555;
  }

  .position-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #06396b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }



  .position-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #06396b;
    margin-bottom: 1rem;
  }

  .position-detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
  }

  .position-detail i {
    margin-right: 0.5rem;
    color: #06396b;
    width: 20px;
  }

  .application-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
  }

  .form-control {
    border-radius: 8px;
    border: 1px solid rgb(6 57 107 / 75%) !important;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }

  .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }

  .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }

  .required::after {
    content: '*';
    color: #dc3545;
    margin-left: 3px;
  }

  .btn-submit {
    background-color: #06396b;
    border: none;
    padding: 1rem 3rem;
    font-size: 2.1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .btn-submit:hover {
    background-color: #06396b;
  }

  .file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .file-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }

  .file-upload-button {
    display: inline-block;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }

  .file-upload-button:hover {
    background-color: #e9ecef;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }

    .application-form {
      padding: 2rem;
    }

    .position-card {
      padding: 1.5rem;
    }
  }
