
    .recruitment-process {
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  padding: 80px 0;
    margin: 0 0 80px 0;
    background-color: rgb(17, 23, 23);
  }
  .recruitment-container {
    max-width: 1360px;
    margin: 0 auto;
  }
  .recruitment-header {
    display: flex;
  }
  
  .title-section h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  
  .title-section p {
    color: #ccc;
    font-size: 16px;
    font-weight: 400;
    max-width: 984px;
    line-height: 1.5;
  }
  
  .toggle-buttons {
    display: flex;
    height: 60px;
    width: 100%;
    max-width: 265px;
    border: 3px solid #fff;
    background: transparent;
    border-radius: 50px;
    padding: 4px;
    overflow: hidden;
  }
  
  .toggle-btn {
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
  }
  
  .toggle-btn.active {
    background: white;
    color: black;
  }
  
  .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .toggle-btn.active .check-icon {
    background: currentColor;
    border-color: currentColor;
  }
  
  .check-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .toggle-btn:not(.active) .check-icon svg {
    stroke: currentColor;
  }
  
  .toggle-btn.active .check-icon svg {
    stroke: white;
  }
  
  .process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background: #fff;
    z-index: 1;
  }
  
  .process-step {
    flex: 1;
    position: relative;
    z-index: 2;
  }
  
  .step-number {
    width: 64px;
    height: 64px;
    background: white;
    color: black;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
  }
  
  .step-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .step-content p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
  }

  .process-timeline {
  display: none;}

.process-timeline.active {
  display: flex;}

 
  
  @media (max-width: 1279px) {
    .recruitment-header {
      flex-direction: column;
      gap: 40px;
      margin-bottom: 60px;
    }
  
    .title-section h2 {
      font-size: 36px;
    }
    .title-section p {
      margin-bottom: 0;
    }
    .toggle-buttons {
      align-self: flex-start;
    }
  
    .process-timeline {
      flex-direction: column;
      gap: 0;
    }
  
    .process-timeline::before {
      top: 32px;
      left: 32px;
      bottom: 32px;
      width: 2px;
      height: auto;
      right: auto;
    }
  
    .process-step {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 32px;
      margin-bottom: 48px;
    }
  
    .process-step:last-child {
      margin-bottom: 0;
    }
  
    .step-number {
      border-radius: 50%;
      flex-shrink: 0;
      font-size: 20px;
    }
  
    .step-content {
      flex: 1;
      padding-top: 8px;
    }
  
    .step-content h3 {
      margin-bottom: 8px;
    }
    .step-content p {
      font-size: 14px;
    }
  }
  
  @media (max-width: 768px) {
    .recruitment-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  @media (min-width: 768px) {
    .recruitment-container {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  
  @media (min-width: 1024px) {
    .recruitment-container {
      padding-left: 80px;
      padding-right: 80px;
    }
  }
  