
  .x60-getting-started {
    max-width: 1120px;
    margin: 0 auto;
    padding: 76px 24px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
    scroll-margin-top: 80px;
  }

  .x60-getting-started h2 {
    margin: 0 0 42px;
    font-size: 36px;
    line-height: 1.2;
    color: #000;
    font-weight: 700;
  }

  .x60-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .x60-step-card {
    background: #f4f5f6;
    border-radius: 8px;
    padding: 24px 22px;
    box-sizing: border-box;
    min-height: 206px;
  }

  .x60-step-number {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
  }

  .x60-step-card h3 {
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 1.3;
    color: #111;
    font-weight: 400;
  }

  .x60-step-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #555;
  }

  @media (max-width: 900px) {
    .x60-getting-started {
      padding: 54px 16px;
    }

    .x60-getting-started h2 {
      font-size: 28px;
      margin-bottom: 28px;
    }

    .x60-step-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .x60-step-card {
      min-height: auto;
    }
  }
