@charset "utf-8";
/* CSS Document - mybap manual (v3.0 additions)
   v1.0의 css.mybap_manual.css와 함께 로드되어 신규 컴포넌트를 보강합니다. */

/* ===== 인트로 영역 ===== */
#wrap_body_content .box_body_center .manual_intro {
    margin: 0 0 22px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f7faff 0%, #eef4fc 100%);
    border: 1px solid #dce6f3;
    border-radius: 10px;
}
#wrap_body_content .box_body_center .intro_lead {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #2a3242;
    letter-spacing: -0.2px;
}
#wrap_body_content .box_body_center .intro_lead strong {
    color: #064E3B;
    font-weight: 700;
}
#wrap_body_content .box_body_center .intro_lead em {
    font-style: normal;
    color: #0F766E;
    font-weight: 600;
    border-bottom: 2px solid #10B981;
    padding-bottom: 1px;
}

/* ===== 특징 리스트 ===== */
#wrap_body_content .box_body_center .feature_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#wrap_body_content .box_body_center .feature_list li {
    flex: 1 1 calc(50% - 14px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e1eaf5;
    border-radius: 8px;
    font-size: 13px;
    color: #2a3242;
    box-shadow: 0 1px 3px rgba(15, 42, 91, 0.04);
}
#wrap_body_content .box_body_center .feature_list li i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F766E 0%, #10B981 100%);
    color: #ffffff;
    font-size: 13px;
}

/* ===== 섹션 설명 문구 ===== */
#wrap_body_content .box_body_center .section_desc {
    margin: -6px 0 12px 0;
    font-size: 13px;
    color: #5a6478;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

/* ===== 안내(주의) 리스트 ===== */
#wrap_body_content .box_body_center .notice_list {
    margin: 14px 0 0 0;
    padding: 14px 18px 14px 20px;
    list-style: none;
    background: #fafbfd;
    border-left: 3px solid #10B981;
    border-radius: 0 6px 6px 0;
}
#wrap_body_content .box_body_center .notice_list li {
    position: relative;
    padding: 4px 0 4px 16px;
    font-size: 13px;
    color: #4a5568;
    line-height: 1.65;
}
#wrap_body_content .box_body_center .notice_list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0F766E;
}

/* ===== 진행 절차 (process_flow) ===== */
#wrap_body_content .box_body_center .process_flow {
    margin: 4px 0 0 0;
}
#wrap_body_content .box_body_center .process_flow ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}
#wrap_body_content .box_body_center .process_flow li {
    position: relative;
    flex: 1 1 calc(33.333% - 10px);
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 14px 14px;
    background: #ffffff;
    border: 1px solid #dde6f2;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(15, 42, 91, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
#wrap_body_content .box_body_center .process_flow li:hover {
    transform: translateY(-2px);
    border-color: #10B981;
    box-shadow: 0 6px 14px rgba(18, 195, 243, 0.18);
}
#wrap_body_content .box_body_center .process_flow li:not(:last-child):after {
    content: "\f105"; /* fontawesome chevron */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #b8c4d6;
    font-size: 14px;
    z-index: 2;
    background: #ffffff;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
}
#wrap_body_content .box_body_center .process_flow .step_no {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #064E3B 0%, #0F766E 100%);
    border-radius: 50%;
    letter-spacing: -0.3px;
    box-shadow: 0 2px 5px rgba(15, 42, 91, 0.25);
}
#wrap_body_content .box_body_center .process_flow .step_txt {
    font-size: 13px;
    font-weight: 500;
    color: #2a3242;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

/* ===== Alert (강조 안내 박스) ===== */
#wrap_body_content .box_body_center .alert_box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 16px 0 0 0;
    padding: 16px 18px;
    background: #fff8f8;
    border: 1px solid #f5d4d4;
    border-left: 4px solid #DC2626;
    border-radius: 6px;
}
#wrap_body_content .box_body_center .alert_box > i {
    flex-shrink: 0;
    font-size: 20px;
    color: #DC2626;
    margin-top: 1px;
}
#wrap_body_content .box_body_center .alert_box p {
    margin: 0;
    font-size: 13px;
    color: #2a3242;
    line-height: 1.65;
}
#wrap_body_content .box_body_center .alert_box .alert_sub {
    margin-top: 6px;
    font-size: 12px;
    color: #5a6478;
}
#wrap_body_content .box_body_center .alert_box .alert_sub strong {
    color: #0F766E;
    font-weight: 600;
}

/* ===== FAQ ===== */
#wrap_body_content .box_body_center .faq_list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e1eaf5;
}
#wrap_body_content .box_body_center .faq_list dt {
    position: relative;
    padding: 16px 16px 14px 56px;
    font-size: 14px;
    font-weight: 600;
    color: #064E3B;
    border-bottom: 1px solid #eef2f8;
    background: #fafcff;
    letter-spacing: -0.2px;
}
#wrap_body_content .box_body_center .faq_list dd {
    position: relative;
    margin: 0;
    padding: 14px 16px 16px 56px;
    font-size: 13px;
    color: #4a5568;
    line-height: 1.7;
    border-bottom: 1px solid #e1eaf5;
}
#wrap_body_content .box_body_center .faq_list dd strong {
    color: #0F766E;
    font-weight: 600;
}
#wrap_body_content .box_body_center .faq_list .faq_q,
#wrap_body_content .box_body_center .faq_list .faq_a {
    position: absolute;
    left: 16px;
    top: 14px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    color: #ffffff;
}
#wrap_body_content .box_body_center .faq_list .faq_q {
    background: linear-gradient(135deg, #0F766E 0%, #10B981 100%);
    box-shadow: 0 2px 5px rgba(26, 78, 163, 0.25);
}
#wrap_body_content .box_body_center .faq_list .faq_a {
    background: #ffffff;
    color: #DC2626;
    border: 1.5px solid #DC2626;
}

/* ===== 고객센터 안내 박스 ===== */
#wrap_body_content .box_body_center .contact_box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 22px 0 4px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #064E3B 0%, #0F766E 60%, #10B981 100%);
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 42, 91, 0.18);
}
#wrap_body_content .box_body_center .contact_box .contact_icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 24px;
    color: #ffffff;
}
#wrap_body_content .box_body_center .contact_box .contact_info {
    flex: 1;
}
#wrap_body_content .box_body_center .contact_box .contact_title {
    margin: 0 0 4px 0;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}
#wrap_body_content .box_body_center .contact_box .contact_phone {
    margin: 0 0 4px 0;
    font-family: "Helvetica", "Arial", sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.1;
}
#wrap_body_content .box_body_center .contact_box .contact_time {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.1px;
}

/* ===== 좁은 화면 보정 ===== */
@media (max-width: 1100px) {
    #wrap_body_content .box_body_center .feature_list li {
        flex: 1 1 100%;
    }
    #wrap_body_content .box_body_center .process_flow li {
        flex: 1 1 calc(50% - 10px);
    }
    #wrap_body_content .box_body_center .process_flow li:nth-child(2n):after {
        display: none;
    }
}
