/* contact.css — 사무실원상복구 상담: 단일 컬럼 중앙 정렬 */
:root {
  --bg: #FAF9F7;
  --text: #232A32;
  --primary: #2E3B4E;
  --secondary: #C7CFD8;
  --font-display: "Gowun Dodum", sans-serif;
  --font-body: "Pretendard", "Noto Sans KR", sans-serif;
}

.contact-body {
  max-width: 680px;
  padding: 48px 20px 72px;
}
.c-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--secondary);
}
.c-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.c-block h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 14px; }

.c-list {
  margin: 0 0 16px;
  padding-left: 20px;
}
.c-list li { margin-bottom: 6px; }

.c-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.c-steps span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.c-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-check li { display: flex; align-items: center; gap: 10px; }
.c-check svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
