@charset "utf-8";
/************************************************************************************************************
                                          시민 법률지원 - 개인파산 회생지원변호사제도
************************************************************************************************************/
.container {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* 상단 프로필 섹션 */
.header-box {
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  padding: 0px 30px 0px 0;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  background: #fff;
}
.profile-img {
  width: 215px;
  height: 181px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.header-info h2 {
  margin: 0 0 10px 0;
  font-size: 26px;
  color: #00468c;
}
.header-info h2 small {
  font-size: 16px;
  margin-right: 8px;
  color: #00468c;
  font-weight: 600;
}
/*.header-info span {
  margin-left: 10px;
}*/
.header-info p {
  margin: 0;
  font-size: 1.9rem;
  word-break: keep-all;
  color: #444;
}
.highlight-blue {
  color: #00468c;
  font-weight: 500;
  font-size: 2.2rem;
}
.highlight-gray {
  color: #565656;
  font-weight: 400;
  font-size: 2rem
}
/* 본문 콘텐츠 */
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #222;
  line-height: 25px;
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: 5px solid #00468c;
}
.content-text {
  font-size: 1.8rem;
  color: #333;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 15px;
  word-break: keep-all;
}
.accent-pink-box {
  margin: 20px 0;
  padding: 20px;
  background-color: #fff5f8;
  border-radius: 10px;
}
.accent-pink {
  color: #e91e63;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
/* 반응형 프로세스 바 */
.step-container {
  display: flex;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 8px;
}
.step-item {
  flex: 1;
  position: relative;
  background: #fdfdfd;
  text-align: center;
  padding: 0 0 25px 0;
  border: 1px solid #eee;
  border-right: none;
}
.step-item:last-child {
  border-right: 1px solid #eee;
}
/* 단계 타이틀 */
.step-num {
  background: #0056b3;
  color: #fff;
  padding: 10px 0;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.step-text {
  font-weight: 700;
  font-size: 17px;
  color: #333;
  line-height: 1.4;
  padding: 0 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-sub {
  font-size: 14px;
  color: #e91e63;
  margin-top: 8px;
  font-weight: 500;
}
.fee-list {
  list-style: none; /* 기본 점 제거 */
  padding: 0;
  margin: 0;
}
.fee-list li {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  position: relative;
  padding-left: 15px; /* 글머리 기호 여백 */
  word-break: keep-all; /* 단어 단위 줄바꿈 (가독성) */
}
/* 이미지의 '-' 글머리 기호 재현 */
.fee-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #666;
  font-weight: bold;
}
/* 참고사항 스타일 */
.fee-notice {
  font-size: 14px;
  color: #888;
  margin-top: 15px;
  padding-left: 15px;
}
.only-mo {
  display: none;
}
/* --- 모바일 반응형 (768px 이하) --- */
@media (max-width: 768px) {
  .header-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .profile-img {
    width: 170px;
    height: 140px;
    border: 1px solid #ddd;
  }
  .header-info h2 {
    font-size: 22px;
  }
  .step-container {
    flex-direction: column;
    gap: 10px;
    border: none;
  }
  .step-item {
    border-right: 1px solid #eee;
    border-radius: 10px;
    padding-bottom: 20px;
  }
  .step-num {
    border-radius: 8px 8px 0 0;
  }
  /* 모바일에서는 화살표 장식 생략 (가독성 위함) */
  .step-item::after, .step-item::before {
    display: none;
  }
  .section-title {
    font-size: 20px;
  }
  .only-mo {
    display: inline;
  }
}