.container {
    width: 100%;
    max-width: 970px;
}

/* 공통 단계 스타일 */
.step-row {
    display: flex;
    margin-bottom: 20px;
    align-items: stretch;
}

.step-header {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px;
}

.step-content {
    flex-grow: 1;
    padding: 20px;
   
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-width: 2px;
    border-style: solid;
   
     /* 왼쪽 테두리는 헤더와 연결된 느낌을 위해 제거하거나 조정 */
}

/* 각 단계별 색상 정의 */
/* 1. 예비단계 - 다크 네이비 */
.step-1 .step-header { background-color: #476393; }
.step-1 .step-content { border-color: #476393; }

/* 2. 제안단계 - 스틸 블루 */
.step-2 .step-header { background-color: #669ec1; }
.step-2 .step-content { border-color: #669ec1; }

/* 3. 준비단계 - 청록색(Teal) */
.step-3 .step-header { background-color: #01bbba; }
.step-3 .step-content { border-color: #01bbba; }

/* 4. 위원회단계 - 초록색 */
.step-4 .step-header { background-color: #02cc9a; }
.step-4 .step-content { border-color: #02cc9a; }

/* 5. 질의단계 - 짙은 초록 */
.step-5 .step-header { background-color: #009e75; }
.step-5 .step-content { border-color: #009e75; }

/* 6. 승인단계 - 어두운 숲색 */
.step-6 .step-header { background-color: #2d808e; }
.step-6 .step-content { border-color: #2d808e; }

/* 7. 발간단계 - 다시 다크 네이비 */
.step-7 .step-header { background-color: #476393; }
.step-7 .step-content { border-color: #476393; }

/* 콘텐츠 내부 스타일 */
.step-content h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #000;
}

.step-content p {
    margin-bottom: 10px;
    text-align: justify;
}

.step-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

.step-content ul li {
    margin-bottom: 5px;
}

/* 하단 버튼 영역 */
.step-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 10px 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-blue {
    background-color: #00a8b5; /* 청록색 버튼 */
}

.btn-navy {
    background-color: #1e3799; /* 네이비 버튼 */
}

/* 모바일 반응형 */
@media (max-width: 600px) {
    .step-row {
        flex-direction: column;
    }
    .step-header {
        width: 100%;
        border-radius: 5px 5px 0 0;
        padding: 10px;
    }
    .step-content {
        border-left-width: 2px; /* 모바일에서는 왼쪽 테두리 다시 생기게 */
        border-radius: 0 0 5px 5px;
    }
    .step-footer {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
}
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e6e6e6;
    border-radius:8px;
    font-size: 1.6rem;
    margin-bottom:50px;
  }
  .people-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .people-table caption { position: absolute; left: -9999px; }
  .people-table thead th {
    position: sticky; top: 0; z-index: 1;
    background: #f7f7f8; color: #111; text-align: center;
    font-weight: 700; padding: 14px 16px; border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
  }
  .people-table thead th:first-child {  
    border-left: 0;}
  .people-table td {
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #e6e6e6;
    word-break: keep-all;
    border-left: 1px solid #e6e6e6;
    text-align: center;
  }
  .people-table thead tr:last-child th:first-child{
    border-left: 1px solid #e6e6e6;
  }
  .people-table tbody tr:nth-child(even) { background: var(--rowAlt); }
  .people-table tbody tr:hover { background: #f2f7ff; }
  .people-table td:first-child {  font-weight: 600;    text-align: center;
      vertical-align: middle;
      border-left: 0; color: #111;}
  .people-table td:nth-child(2) {  font-weight: 600;    text-align: center;
      vertical-align: middle;color: #111; }
  .bio { margin: 0; padding: 0 0 0 18px; }
  .bio li { margin: 2px 0; list-style: none; }
  .people-table tr:last-child td { border-bottom: 0; }
  @media (max-width: 480px) {
 
    .people-table thead th, .people-table td { padding: 16px 14px; }
  }