.service-process-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
  }
  
  /* 标题样式 */
  .section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    font-weight: 600;
  }
  
  .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0066cc;
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
  }
  
  /* 步骤布局 */
  .process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  /* 单个步骤卡片 */
  .process-step {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  /* 步骤数字圆圈 */
  .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #0066cc;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px;
  }
  
  /* 步骤内容 */
  .step-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
  }
  
  /* 移动端适配 */
  @media (max-width: 768px) {
    .section-title {
      font-size: 26px;
    }
    .process-steps {
      flex-direction: column;
      align-items: center;
    }
    .process-step {
      width: 100%;
      max-width: 380px;
    }
  }