/* ===== 기본 ===== */
#process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Noto Sans KR", "Noto Sans SC", sans-serif;
  color: #222;
}

.lang-zh {
  color: #666;
}

/* ===== 헤더 ===== */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== 그리드 ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== 카드 ===== */
.process-card {
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 40px;
}

/* ===== STEP 번호 ===== */
.step-num {
  font-size: 40px;
  font-weight: 700;
  color: #0067bf;
}

/* ===== 타이틀 ===== */
.step-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 14px;
  margin-bottom: 0; /* 중요 */
}

/* ===== 세부내역 영역 ===== */
.step-content {
  margin-top: 20px;      /* ✔ 사업분야/서비스소개와 동일 */
  margin-left: 18px;    /* ✔ 들여쓰기 통일 */
}

/* ===== 리스트 ===== */
.step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.step-list li {
  position: relative;
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #0067bf;
  border-radius: 50%;
}

/* ===== 모바일 ===== */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .process-card {
    padding: 28px 22px;
  }

  .step-num {
    font-size: 26px;
  }

  .step-title {
    font-size: 18px;
  }
}
