/* 기본 설정 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 공통 타이틀 스타일 */
.section-title {
    color: #2c5282; /* 짙은 파란색 */
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.sub-title {
    color: #2c5282;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.content {
    margin: 50px 0;
    padding-top: 50px;
    border-top: 1px solid #e5e7eb;
}
/* 1. 인증개요 */
.overview-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.logo-area {
    display: flex;
    gap: 20px;
}

.logo-box {
    width: 120px;
    text-align: center;
}

.logo-placeholder {
    width: 100%;
    height: 100px;
    background-color: #f7fafc;
    border: 2px solid #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6remrem;
    color: #718096;
    margin-bottom: 5px;
}

.text-area {
    flex: 1;
}

.highlight-text {
    color: #2c3950;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.desc-text {
    font-size: 1.6rem;
    text-align: justify;
    
}

/* 2. 인증 상세 정보 (표 스타일) */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    align-items: stretch;
    border:1px solid #fbd38d;
}

.info-label {
    width: 150px;
    min-height: 150px;
    background-color: #fbd38d; /* 노란색/주황색 배경 */
    color: #fff;
    font-weight: bold;
    
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
/* 1번째: 인증대상 */
.info-row:nth-child(1) .info-label {
    background-color: #fbd38d; 
    border-color: #fbd38d;
}

/* 2번째: 인증신청 */
.info-row:nth-child(2) .info-label {
    background-color: #fabc65;
    border-color: #fabc65;
}

/* 3번째: 심사절차 */
.info-row:nth-child(3) .info-label {
    background-color: #f6ad55;
    border-color: #f6ad55;
}

/* 4번째: 심사비용 */
.info-row:nth-child(4) .info-label {
    background-color: #ed8936;
    border-color: #ed8936;
}

/* 5번째: 처리기간 */
.info-row:nth-child(5) .info-label {
    background-color: #dd6b20;
    border-color: #dd6b20;
}

/* 6번째: 인증기관 */
.info-row:nth-child(6) .info-label {
    background-color: #c05621;
    border-color: #c05621;
}

/* 7번째: 유효기간 */
.info-row:nth-child(7) .info-label {
    background-color: #9c4221;
    border-color: #9c4221;
}
/* 1번째: 인증대상 */
.info-row:nth-child(1) {
    border-color: #fbd38d;
}

/* 2번째: 인증신청 */
.info-row:nth-child(2) {
    border-color: #fabc65;
}

/* 3번째: 심사절차 */
.info-row:nth-child(3) {
    border-color: #f6ad55;
}

/* 4번째: 심사비용 */
.info-row:nth-child(4) {
    border-color: #ed8936;
}

/* 5번째: 처리기간 */
.info-row:nth-child(5) {
    border-color: #dd6b20;
}

/* 6번째: 인증기관 */
.info-row:nth-child(6) {
    border-color: #c05621;
}

/* 7번째: 유효기간 */
.info-row:nth-child(7) {
    border-color: #9c4221;
}
.info-content {
    flex: 1;
    padding: 15px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clean-list {
    list-style: none;
}

.clean-list li {
    margin-bottom: 5px;
}

.indent {
    padding-left: 15px;
    font-size: 1.6rem;
    color: #555;
}

.bold {
    font-weight: bold;
}

.sub-text {
    font-size: 1.6rem;
    color: #666;
    margin: 5px 0;
}

/* 3. 인증 혜택 */
.benefits-list {
    list-style-position: inside;
    padding-left: 10px;
}

.benefits-list li {
    margin-bottom: 8px;
}

.benefits-list li::marker {
    content: "- ";
}

/* 4. 컨설팅 업무 (흐름도) */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: #edf2f7;
    padding: 20px;
    border-radius: 8px;
}

.step-box {
    background-color: #e2e8f0;
    border: 1px solid #cbd5e0;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    width: 20%;
    font-weight: bold;
    font-size: 1.6rem;
}

.arrow {
    color: #a0aec0;
}

.detailed-flow-text {
    text-align: center;
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
}
.top-process-content{
    padding-top:76.288%;
    height:0;
    position: relative;
    overflow: hidden;
    background: url('/img/group_certification1.gif') no-repeat center center;
    background-size: 100%;
}

/* 반응형 (모바일) */
@media (max-width: 768px) {
    .overview-content {
        flex-direction: column;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        width: 100%;
        padding: 10px;
        min-height:0;
    }

    .process-flow {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-box {
        width: 100%;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    .top-process-content{
        padding-top:166.66%;
        background: url('/img/certification_m.png') no-repeat center top;
        background-size: 100%;
    }
    
}
@media (max-width: 620px) {
    .top-process-content{
        padding-top:200%;
        background: url('/img/certification_m1.png') no-repeat center top;
        background-size: 100%;
    }
}
