
  .manbily-apply-section {
    background-color: #2F3030;
    color: #ffffff;
    padding: 80px 0 95px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .manbily-apply-container {
    width: 70%;
    max-width: 1360px;
    margin: 0 auto;
  }

  .manbily-apply-header {
    margin-bottom: 36px;
  }

  .manbily-apply-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
  }

  .manbily-apply-header p {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
    color: #F2F2F2;
    max-width: 760px;
    margin: 0;
  }

  .manbily-apply-form {
    background-color: #3A3B3B;
    border-radius: 28px;
    padding: 40px;
    box-sizing: border-box;
  }

  .manbily-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .manbily-form-group {
    display: flex;
    flex-direction: column;
  }

  .manbily-form-group.full {
    grid-column: 1 / -1;
  }

  .manbily-form-group label {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .manbily-form-group input,
  .manbily-form-group textarea {
    width: 100%;
    background-color: #ffffff;
    color: #222222;
    border: none;
    border-radius: 8px;
    padding: 15px 16px;
    font-size: 15px;
    line-height: 1.5;
    box-sizing: border-box;
    outline: none;
  }

  .manbily-form-group textarea {
    min-height: 120px;
    resize: vertical;
  }

  .manbily-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-top: 4px;
  }

  .manbily-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
  }

  .manbily-checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: #6F8585;
  }

  .manbily-terms {
    margin-top: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
  }

  .manbily-terms input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #6F8585;
  }

  .manbily-submit-wrap {
    margin-top: 34px;
  }

  .manbily-submit-btn {
    display: inline-block;
    background-color: #6F8585;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 17px 46px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
  }

  .manbily-submit-btn:hover {
    background-color: #5E7272;
  }

  .manbily-form-note {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #D8D8D8;
    font-weight: 500;
  }

  @media (max-width: 1200px) {
    .manbily-apply-container {
      width: 82%;
    }
  }

  @media (max-width: 768px) {
    .manbily-apply-section {
      padding: 55px 0 70px;
    }

    .manbily-apply-container {
      width: 88%;
    }

    .manbily-apply-header h2 {
      font-size: 32px;
    }

    .manbily-apply-form {
      padding: 28px 22px;
      border-radius: 22px;
    }

    .manbily-form-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .manbily-checkbox-group {
      grid-template-columns: 1fr;
    }
  }
