.page {
    width: 100%;
    word-break: keep-all;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#contents {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    #contents {
        margin-bottom: 0px;
    }
}

.onframe {
    width: 100%;
    max-width: 1200px;
    height: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .onframe {
        width: 99%;
        max-width: 100%;
        height: 1500px;
    }
}

.title {
    margin: 6rem 0 2rem 0;
    /* 위 48px, 아래 32px */
    font-size: 2rem;
    /* 32px */
    font-weight: 700;
    color: #000;
    text-align: center;
    letter-spacing: -0.02em;
}

.title h2 {
    font-size: inherit;

}

.title.left {
    text-align: left;
}

.title.lef {
    text-align: left;
}

.btr {
    padding: 0 0 1.15rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
}

/* ✅ 태블릿 / 모바일 대응 */
@media (max-width: 1024px) {
    .title {
        margin: 2.5rem 0 1.5rem 0;
        /* 위 40px, 아래 24px */
        font-size: 1.75rem;
        /* 28px */
    }
}

@media (max-width: 768px) {
    .title {
        margin: 2rem 0 1.5rem 0;
        /* 위 32px, 아래 24px */
        font-size: 1.25rem;
        /* 24px */
    }

    .btr {
        padding: 0 0 0.65rem;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.25rem;
    }
}

.pagetop {
    position: relative;
    z-index: -2;
    width: 100%;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    background: #1180c3;
    text-align: center;
}

.pagetop::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url("/img/main_slide/m1.jpg") no-repeat 50% 45%;
    background-size: cover;
    content: "";
    filter: blur(0px);
    /* 흐림 효과 필요시 값 조정 */
    opacity: 0.5;
}

.pagetop ul {
    display: flex;

    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    margin-top: 40px;
}

.pagetop ul li {
    width: 90%;
    margin: 0 auto;
}

.pagetop ul li h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0px;
}

.pagetop ul li h3 {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
}

.pagetop ul li h3 span {
    color: #1180c3;
}

/* ✅ 태블릿 대응 (1024px 이하) */
@media (max-width: 1024px) {
    .pagetop {
        height: 320px;
    }

    .pagetop ul li h2 {
        font-size: 30px;
    }

    .pagetop ul li h3 {
        font-size: 24px;
    }
}

/* ✅ 모바일 대응 (768px 이하) */
@media (max-width: 768px) {
    .pagetop {
        height: 190px;
    }

    .pagetop ul {
        margin: 20px 0 0 0;
    }

    .pagetop ul li h2 {
        font-size: 18px;
    }

    .pagetop ul li h3 {
        padding: 0;
        font-size: 15px;
    }
}

/* ✅ 메인 탭 영역 */
#tap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    background: #004089;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border-bottom: 0;
}

#tap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding:10px 0;
    margin: 0 auto;
    text-align: center;
}

#tap li {
    position: relative;
    width: auto;
    margin: 0;
    padding: 0 0 0 0;
    font-size: 20px;
    font-weight: 400;
}

#tap li:last-child {
    padding: 0 0 0 0;
}

#tap li::before {
    display: inline-block;
    width: 1px;
    height: 10px;
    vertical-align: middle;
    margin: 0 3rem;
    /* 오른쪽 약 24px */
    background-color: rgba(255, 255, 255, 0.4);
    content: "";
}

#tap li:first-child::before {
    width: 0;
    margin: 0;
}

#tap li a {
    display: inline-block;
    padding: 0;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

#tap li:hover a,
#tap li.active a {
    font-weight: 700;
    color: #fff;
}

/* ✅ 태블릿 대응 (1024px 이하) */
@media (max-width: 1024px) {
    #tap ul {
        flex-wrap: wrap;
        height: auto;
    }

    #tap li {
        padding: 0 1.2rem;
        /* 좌우 약 20px */
        font-size: 1.25rem;
        /* 약 16px */
    }

    #tap li::before {
        margin-right: 1rem;
        /* 약 16px */
    }
}

/* ✅ 모바일 대응 (768px 이하) */
@media (max-width: 768px) {
    #tap {
        font-size: 1.05rem;
    }

    #tap ul {
        width: auto;
        margin: 0 auto;
    }

    #tap li {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        font-size: 1rem;
        /* 약 15px */
    }

    #tap li::before {
        height: 7px;
        margin: 0 0.55rem;
    }
}

.feature {
    margin: 2rem 0;
    /* 위아래 32px */
    padding: 1.5rem;
    /* 약 24px */
    border: 2px solid #1180c3;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 1.05rem;
    /* 약 17.6px */
    text-align: center;
}

.feature ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature li {
    margin: 0.5rem 0;
    /* 약 8px */
    font-weight: bold;
    color: #1180c3;
}

/* =========================================
   [NEW] Subpage Redesign (Modern Layout)
   Target: .office01, .office02, .office03
   ========================================= */

/* Common Variables (Hardcoded for strict compliance) */
/* Primary: #1180c3, Dark: #111111, Text: #393939 */
























/* Card Style */















/* Icon style reset */










/* Hide Old Image Block if it exists */
















/* Icon Replacement for Target List */


/* Assign specialized icons for variety if possible, otherwise generic */
/* Since we can't target text easily with CSS only, used generic icon. */



/* =========================================
   Responsive Design (Mobile/Tablet)
   ========================================= */

@media (max-width: 1024px) {
    /* Intro */





    /* Scope */


    /* 1 Column */




    /* Stack */

    /* Targets */

}

@media (max-width: 768px) {



}

.log > ul > li > ul h2::before {
    vertical-align: middle;
    font-family: "Font Awesome 6 Free";
    font-size: 1.05rem;
    font-weight: 600;
    color: #1180c3;
    content: "\f0fe";
    margin-right: 0.5rem;
}

.log > ul > li > ul > li::before {
    content: none;
}

/* ✅ 공통 (PC 기본) */
.office04 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    text-align: left;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.office04 > h2 {
    width: 100%;
    margin: 0;
    padding: 10px 0 40px 0;
    font-size: 2rem;
    /* 32px */
    font-weight: 650;
    letter-spacing: 0;
}

/* ✅ 이미지 영역 */
.office04 .img {
    width: 100%;
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
}

.office04 .img > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.office04 .img > ul > li {
    width: 49%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.office04 .img > ul > li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ✅ 리스트 */
.office04 > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    border: 1px solid #eee;
    border-radius: 15px;
    margin-top: 1rem;
    box-sizing: border-box;
}

.office04 > ul > li {
    width: 100%;
    padding: 15px 0px 15px 60px;
    font-size: 1.25rem;
    /* 22px */
    font-weight: 350;
    line-height: 1.5;
    text-align: left;
    box-sizing: border-box;
}

.office04 > ul > li h2 {
    width: 100%;
    padding: 0 0 10px 0;
    font-size: 1.5rem;
    /* 24px */
    font-weight: 650;
}

.office04 > ul > li h2::before {
    vertical-align: middle;
    font-family: "Font Awesome 6 Free";
    font-size: 1.05rem;
    font-weight: 600;
    color: #1180c3;
    content: "\f0fe";
    margin-right: 0.5rem;
}

/* ✅ 태블릿 대응 (1024px 이하) */
@media (max-width: 1024px) {
    .office04 .img {
        height: auto;
    }

    .office04 {
        padding: 3rem 0;
    }

    .office04 .img > ul {
        flex-direction: column;
    }

    .office04 .img > ul > li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .office04 > ul {
        padding: 1rem;
    }

    .office04 > ul > li h2 {
        padding: 0 0 5px 0;
        font-size: 1.15rem;
        /* 20px */
    }
}

/* ✅ 모바일 대응 (768px 이하) */
@media (max-width: 768px) {
    .office04 {
        padding: 3rem 0;
    }

    .office04 > h2 {
        padding: 0.5rem 0 1.5rem 0;
        font-size: 1.15rem;
        /* 24px */
        text-align: center;
    }

    .office04 > ul > li {
        padding: 0.5rem 0.5rem;
        font-size: 1.05rem;
        /* 16px */
    }
}

.ceo01 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0;
    box-sizing: border-box;
}

.ceo01 .img {
    flex: 0 0 auto;
    max-width: 1200px;
}

.ceo01 .img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ceo01 .txt {
    padding: 0 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
    margin-top: 3rem;
}

.ceo01 .txt .en {
    font-size: 1.75rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 1.5rem;
}

.ceo01 .txt .en strong {
    font-weight: 700;
}

.ceo01 .txt .highlight {
    font-weight: 700;
    color: #1f4b96;
}

.ceo01 .txt p {
    margin-bottom: 1.5rem;
}

.ceo01 .txt p strong {
    color: #000;
}

.ceo01 .sign {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .ceo01 {
        gap: 3rem;
        align-items: center;
        flex-direction: column;
    }

    .ceo01 .txt {
        font-size: 1.5rem;
        margin-top: 1.25rem;
    }
}

@media (max-width: 768px) {
    .ceo01 {
        padding: 3rem 0.25rem;
    }

    .ceo01 .txt {
        padding: 0 0.85rem;
        font-size: 1.05rem;
    }

    .ceo01 .txt .en {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }

    .ceo01 .sign {
        font-size: 1.05rem;
        font-weight: 600;
        margin-top: 1rem;
    }
}

.trust {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 0rem;
    /* 위아래 80px */
    border-top: 1px solid #eee;
    margin-top: 4rem;
    /* 약 64px */
}

.trust > h2 {
    font-size: 1.75rem;
    /* 28px */
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 2rem;
    /* 32px */
}

.trust > ul {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trust > ul > li {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    flex: 1 1 48%;
    min-width: 280px;
    padding: 2rem;
    border-radius: 1rem;
    background: #ecf9ff;
    box-sizing: border-box;
    box-sizing: border-box;
}

.trust > ul > li .img {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    /* 파란색 계열 그라데이션 */
    -webkit-background-clip: text;
    font-size: 2rem;
    -webkit-text-fill-color: transparent;
}

.trust > ul > li > .txt {
    width: auto;
    text-align: left;
    /* 32px */
}

.trust > ul > li > .txt h2 {
    font-size: 0.787rem;
    font-weight: 700;
    color: #19b2ff;
    margin-bottom: 0.5rem;
}

.trust > ul > li > .txt h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.trust > ul > li > .txt h3 .blue {
    font-weight: 700;
}

.trust > ul > li > .txt p {
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .trust {
        padding: 4rem 1rem;
        margin-top: 3rem;
    }

    .trust > h2 {
        font-size: 1.5rem;
    }

    /* 24px */

    .trust > ul > li {
        flex: 1 1 100%;
        padding: 1.8rem;
    }

    .trust > ul > li .img {
        font-size: 2rem;
    }

    .trust > ul > li > .txt h2 {
        font-size: 0.72rem;
    }

    .trust > ul > li > .txt h3 {
        font-size: 1.25rem;
    }

    .trust > ul > li > .txt p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .trust {
        padding: 3rem 1rem;
    }

    .trust > h2 {
        font-size: 1.15rem;
    }

    /* 21.6px */
    .trust > ul {
        gap: 1.5rem;
    }

    .trust > ul > li {
        gap: 0.85rem;
        align-items: center;
        flex-direction: column;
        padding: 1.6rem;
        text-align: center;
    }

    .trust > ul > li .img {
        font-size: 2rem;
    }

    .trust > ul > li > .txt {
        padding: 0;
        text-align: center;
    }

    .trust > ul > li > .txt h2 {
        font-size: 0.765rem;
        letter-spacing: 1px;
    }

    .trust > ul > li > .txt h3 {
        font-size: 1.25rem;
    }

    .trust > ul > li > .txt p {
        font-size: 0.765rem;
    }
}

.service-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0rem;
}

.service-list > h2 {
    font-size: 1.75rem;
    /* 28px */
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 2rem;
    /* 32px */
}

.service-list > ul {
    width: 80%;
    margin: 0 auto;
}

.service-list > ul > li {
    padding: 1.25rem 0;
    /* 위아래 20px */
    border: 2px solid #1180c3;
    border-radius: 100px;
    font-size: 1.15rem;
    /* 약 23px */
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
    /* 약 32px */
    box-sizing: border-box;
}

.service-list > ul > li i {
    vertical-align: middle;
    font-size: 1.75rem;
    /* 28px */
    color: #1180c3;
    margin-right: 0.5rem;
}

/* ✅ 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
    .service-list {
        padding: 3rem 0;
        /* 좌우 16px */
    }

    .service-list > h2 {
        font-size: 1.5rem;
        /* 24px */
        margin-bottom: 1.5rem;
    }

    .service-list > ul {
        width: 80%;
    }

    .service-list > ul > li {
        padding: 1rem 0;
        border-radius: 80px;
        font-size: 1.25rem;
        /* 20px */
        margin-bottom: 1.5rem;
    }

    .service-list > ul > li i {
        font-size: 1.5rem;
        /* 24px */
    }
}

/* ✅ 모바일 (768px 이하) */
@media (max-width: 768px) {
    .service-list {
        padding: 2rem 0;
        /* 좌우 16px, 위아래 48px */
    }

    .service-list > h2 {
        font-size: 1.25rem;
        /* 20px */
        margin-bottom: 1.25rem;
    }

    .service-list > ul {
        width: 100%;
    }

    .service-list > ul > li {
        padding: 0.75rem 0;
        border-radius: 60px;
        font-size: 1rem;
        /* 18px */
        margin-bottom: 1rem;
    }

    .service-list > ul > li i {
        font-size: 1.15rem;
        /* 20px */
        margin-right: 0.1rem;
    }
}

.ceo02 {
    width: 100%;
    padding: 80px 1rem;
    background: #fff;
    color: #000;
    text-align: center;
    box-sizing: border-box;
    margin-top: 0px;
    border-top: 0px solid #eee;
}

.ceo02 > h2 {
    font-size: 1.6rem;
    font-weight: 650;
    margin-bottom: 2rem;
}

.ceo02 > h2 span {
    color: #1180c3;
}

.ceo02 > ul {
    display: table;
    width: 65%;
    margin: 0 auto;
    padding: 0 0 0 0;
    text-align: center;
    box-sizing: border-box;
}

.ceo02 > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 50px 0;
    color: #000;
    word-break: keep-all;
    box-sizing: border-box;
}

.ceo02 > ul > li:last-child {
    padding: 0;
}

.ceo02 > ul > li .img {
    width: 50%;
    height: auto;
    border-radius: 0px;
    overflow: hidden;
    margin-right: 100px;
}

.ceo02 > ul > li .img img {
    width: 100%;
    object-fit: cover;
}

.ceo02 > ul > li .txt {
    width: auto;
    color: #000;
    text-align: left;
    box-sizing: border-box;
    margin-right: auto;
}

.ceo02 > ul > li .txt > h2 {
    padding: 0 0 20px 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
}

.ceo02 > ul > li .txt > h3 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
}

/* 태블릿 이하 */
@media (max-width: 1024px) {
    .ceo02 > ul {
        width: 90%;
    }


    .ceo02 > ul > li {
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding-bottom: 60px;
    }

    .ceo02 > ul > li .img {
        width: 100%;
        margin: 0 0 15px 0;
    }

    .ceo02 > ul > li .txt {
        width: 100%;
        text-align: center;
    }

    .ceo02 > ul > li .txt > h2 {
        font-size: 26px;
    }

    .ceo02 > ul > li .txt > h3 {
        font-size: 20px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .ceo02 {
        padding: 60px 1rem;
    }

    .ceo02 > h2 {
        font-size: 1.5rem;
    }

    .ceo02 > ul > li .img {
        width: 100%;
        margin: 0 0 5px 0;
    }

    .ceo02 > ul > li .txt > h2 {
        padding: 0 0 10px 0;
        font-size: 20px;
    }

    .ceo02 > ul > li .txt > h3 {
        font-size: 16px;
    }
}

.comp_ci {
    position: relative;
    width: 100%;
    margin: 40px auto 0 auto;
    padding: 120px 20px;
    border: 1px solid #eee;
    text-align: center;
    border-top: 1px solid #eee;
    box-sizing: border-box;
}

.comp_ci > h2 {
    font-size: 26px;
    font-weight: 650;
    line-height: 1.4;
    color: #000;
    padding-bottom: 40px;
}

.comp_ci .img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    height: 420px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 0;
    overflow: hidden;
    background: url("/img/page/ci_bg.png") no-repeat 50% 0;
    background-size: cover;
}

.comp_ci > h3 {
    padding: 30px 0;
    font-size: 28px;
    font-weight: 550;
    line-height: 1.4;
    color: #000;
}

.comp_ci > ul {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    box-sizing: border-box;
}

.comp_ci > ul > li > h2 {
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 10px;
}

.comp_ci > ul > li > h2 i {
    vertical-align: middle;
    font-size: 1rem;
    color: #1f4b96;
    margin-right: 10px;
}

.comp_ci > ul > li {
    padding: 0 10px;
    font-size: 24px;
    font-weight: 350;
    line-height: 1.6;
    color: #000;
    text-align: left;
    margin-bottom: 50px;
}

/* 태블릿 (≤1024px) */
@media (max-width: 1024px) {
    .comp_ci {
        padding: 90px 16px;
    }

    .comp_ci > h2 {
        font-size: 28px;
        padding-bottom: 32px;
    }

    .comp_ci .img {
        max-width: 920px;
        height: 360px;
        background-position: 50% 20%;
    }

    .comp_ci > h3 {
        padding: 24px 0;
        font-size: 24px;
    }

    .comp_ci > ul {
        max-width: 840px;
        padding-top: 32px;
    }

    .comp_ci > ul > li > h2 {
        font-size: 24px;
    }

    .comp_ci > ul > li {
        font-size: 20px;
        margin-bottom: 40px;
    }
}

/* 모바일 (≤768px) */
@media (max-width: 768px) {
    .comp_ci {
        padding: 50px 14px;
        margin-top: 30px;
    }

    .comp_ci > h2 {
        font-size: 24px;
        padding-bottom: 24px;
    }

    .comp_ci .img {
        max-width: 100%;
        height: 300px;
        background-position: 50% 30%;
    }

    .comp_ci > h3 {
        padding: 20px 0 10px;
        font-size: 18px;
    }

    .comp_ci > ul {
        max-width: 100%;
        padding-top: 24px;
    }

    .comp_ci > ul > li > h2 {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .comp_ci > ul > li {
        padding: 0;
        font-size: 16px;
        margin-bottom: 35px;
    }
}

.papers {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 1rem;
    text-align: center;
    border-top: 0px solid #eee;
    box-sizing: border-box;
}

.papers > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.papers > ul > li {
    width: 31%;
    vertical-align: top;
    padding: 0;
    font-size: 24px;
    font-weight: 450;
    text-align: center;
    margin-bottom: 70px;
    box-sizing: border-box;
}

.papers > ul > li .img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 550px;
    padding: 5px;
    border: 1px solid #eee;
    overflow: hidden;
    box-sizing: border-box;
}

.papers > ul > li .img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.papers > ul > li span {
    display: inline-block;
    padding: 1.05rem 0 0;
    border-radius: 100px;
    background: #fff;
    font-size: 1.25rem;
    color: #000;
}

@media (max-width: 1024px) {
    .papers > ul > li {
        width: 48%;
    }

    .papers > ul > li .img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .papers {
        padding: 20px 1rem;
    }

    .papers > ul > li {
        width: 48%;
        margin-bottom: 25px;
    }

    .papers > ul > li .img {
        height: auto;
    }

    .papers > ul > li span {
        font-size: 0.765rem;
    }
}

.map01 {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 100px 20px 200px 20px;
    color: #000;
    border-top: 0px solid #eee;
    box-sizing: border-box;
}

.map01 .wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.map01 .wrap h1 {
    padding: 50px 0 20px 0;
    font-size: 18px;
    font-weight: 650;
    text-align: left;
}

.map01 ul {
    width: 100%;
    margin-top: 0px;
    border-top: 1px solid #000;
}

.map01 ul li {
    display: block;
    width: 100%;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 300;
    padding-left: 30px;
    border-bottom: 1px solid #eee;
}

.map01 ul li i {
    font-size: 18px;
    color: #1180c3;
    text-align: center;
    margin-right: 10px;
    box-sizing: border-box;
}

.map01 ul li span {
    display: inline-block;
    width: 15%;
    font-weight: 700;
    color: #000;
    margin-right: 20px;
}

.map01 .log {
    width: 100%;
    max-height: 340px;
}

@media (max-width: 768px) {
    .map01 {
        width: 95%;
        padding: 20px 0 100px 0;
    }

    .map01 .wrap h1 {
        padding: 30px 0 15px 0;
        font-size: 20px;
    }

    .map01 ul li {
        padding: 20px 0 20px 10px;
        font-size: 18px;
    }

    .map01 ul li i {
        font-size: 15px;
        margin-right: 8px;
    }

    .map01 ul li span {
        display: block;
        width: auto;
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.comming {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 320px 0;
    border: 10px solid #eee;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.comming h2 {
    padding: 0 0 10px 0;
    font-size: 32px;
    font-size: 650;
    color: #000;
}

.comming h3 {
    font-size: 24px;
    font-size: 350;
    color: #c3c3c3;
}

.fclean02 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 120px 0 80px;
    text-align: center;
    border-top: 1px solid #eee;
}

.fclean02 > h2 {
    width: 100%;
    margin: 0;
    padding: 0 0 45px 0;
    font-size: 30px;
    font-weight: 650;
    letter-spacing: 0;
}

.fclean02 > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 0;
    text-align: center;
    box-sizing: border-box;
}

.fclean02 > ul > li {
    position: relative;
    width: 31%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 4% 0;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

.fclean02 > ul > li .img {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
    overflow: hidden;
}

.fclean02 > ul > li .img img {
    width: 100%;
    border-radius: 0px;
}

.fclean02 > ul > li .txt {
    max-width: 100%;
    padding: 30px 0;
    border: 0px solid #e2f3ff;
    background: #fff;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}

.fclean02 > ul > li .txt > h2 {
    display: table;
    width: auto;
    margin: 0 auto;
    padding: 3px 25px;
    border-radius: 100px;
    background: #1180c3;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.fclean02 > ul > li .txt h3 {
    font-size: 24px;
    font-weight: 350;
    line-height: 1.4;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .fclean02 {
        padding: 60px 0 60px;
    }

    .fclean02 > h2 {
        font-size: 20px;
        padding-bottom: 30px;
    }

    .fclean02 > ul {
        gap: 40px;
        flex-direction: column;
        padding: 0 15px;
    }

    .fclean02 > ul > li {
        width: 100%;
        padding: 0;
    }

    .fclean02 > ul > li .txt > h2 {
        padding: 4px 20px;
        font-size: 18px;
    }

    .fclean02 > ul > li .txt h3 {
        font-size: 16px;
        line-height: 1.6;
        margin-top: 10px;
    }
}

.fclean03 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 80px 0;
    background: #f9fcff;
    text-align: center;
    border-top: 0px solid #eee;
}

.fclean03 > h2 {
    width: 100%;
    margin: 0;
    padding: 0 0 30px 0;
    font-size: 30px;
    font-weight: 650;
    letter-spacing: 0;
}

.fclean03 > h3 {
    margin: 0;
    padding: 10px 0 45px 0;
    font-size: 20px;
    font-weight: 350;
    letter-spacing: 0;
}

.fclean03 > ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}

.fclean03 > ul > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    height: 375px;
    margin: 0 auto 50px auto;
    overflow: hidden;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

.fclean03 > ul > li .img {
    width: 50%;
    height: auto;
    border: 0px solid #eee;
    overflow: hidden;
}

.fclean03 > ul > li .img img {
    width: 100%;
    border-radius: 0px;
}

.fclean03 > ul > li .txt {
    width: 50%;
    border: 0px solid #e2f3ff;
    background: #fff;
    color: #000;
    text-align: left;
    box-sizing: border-box;
    padding-left: 60px;
}

.fclean03 > ul > li .txt > h2 {
    padding: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
}

.fclean03 > ul > li .txt > h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #1180c3;
}

.fclean03 > ul > li .txt > ul {
    margin-top: 20px;
    box-sizing: border-box;
}

.fclean03 > ul > li .txt > ul > li {
    font-size: 20px;
    font-weight: 350;
    line-height: 1.7;
}

.fclean03 > ul > li .txt > ul > li::before {
    vertical-align: middle;
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    font-weight: 600;
    color: #0082cb;
    content: "\f055";
    margin-right: 1%;
}

@media (max-width: 768px) {
    .fclean03 {
        padding: 60px 0;
    }

    .fclean03 > h2 {
        font-size: 20px;
        padding-bottom: 20px;
    }

    .fclean03 > h3 {
        padding: 10px 0 30px 0;
        font-size: 16px;
    }

    .fclean03 > ul {
        padding: 0 15px;
    }

    .fclean03 > ul > li {
        flex-direction: column;
        height: auto;
        margin-bottom: 40px;
    }

    .fclean03 > ul > li .img {
        width: 100%;
        margin-bottom: 20px;
    }

    .fclean03 > ul > li .txt {
        width: auto;
        padding: 0;
        text-align: left;
    }

    .fclean03 > ul > li .txt > h2 {
        font-size: 20px;
    }

    .fclean03 > ul > li .txt > h3 {
        font-size: 16px;
    }

    .fclean03 > ul > li .txt > ul > li {
        font-size: 16px;
        line-height: 1.6;
    }

    .fclean03 > ul > li .txt > ul > li::before {
        font-size: 15px;
        margin-right: 6px;
    }
}

.fclean04 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.fclean04 > h2 {
    width: 100%;
    margin: 0;
    padding: 0 0 40px 0;
    font-size: 30px;
    font-weight: 650;
    line-height: 1.4;
    letter-spacing: 0;
}

.fclean04 > h3 {
    margin: 0;
    padding: 50px 0 25px 0;
    font-size: 24px;
    font-weight: 450;
    line-height: 1.5;
    letter-spacing: 0;
}

.fclean04 > ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}

.fclean04 > ul > li {
    position: relative;
    width: 31%;
    height: auto;
    margin: 0 auto;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

.fclean04 > ul > li .img {
    max-width: 100%;
    height: 230px;
    overflow: hidden;
}

.fclean04 > ul > li .img img {
    width: 100%;
    border-radius: 0px;
}

.fclean04 > ul > li .txt {
    max-width: 100%;
    padding: 30px 0;
    border: 1px solid #eee;
    background: #fff;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}

.fclean04 > ul > li .txt h2 {
    padding: 0 0 5px 0;
    font-size: 22px;
    font-weight: 700;
}

.fclean04 > ul > li .txt h3 {
    font-size: 20px;
    font-weight: 350;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .fclean04 {
        padding: 60px 0;
    }

    .fclean04 > h2 {
        font-size: 20px;
        padding-bottom: 25px;
    }

    .fclean04 > h3 {
        padding: 30px 0 20px 0;
        font-size: 16px;
    }

    .fclean04 > ul {
        gap: 40px;
        flex-direction: column;
        padding: 0 15px;
    }

    .fclean04 > ul > li {
        width: 100%;
    }

    .fclean04 > ul > li .img {
        height: 180px;
    }

    .fclean04 > ul > li .txt {
        padding: 20px 0;
    }

    .fclean04 > ul > li .txt h2 {
        font-size: 18px;
        padding-bottom: 5px;
    }

    .fclean04 > ul > li .txt h3 {
        font-size: 15px;
        line-height: 1.6;
    }
}

.before {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 120px 0;
    border-top: 0px solid #eee;
}

.before > h2 {
    width: 100%;
    margin: 0;
    padding: 10px 0 0 0;
    font-size: 30px;
    font-weight: 650;
    text-align: center;
    letter-spacing: 0;
}

.before > h3 {
    margin: 0;
    padding: 10px 0 45px 0;
    font-size: 20px;
    font-weight: 350;
    text-align: center;
    letter-spacing: 0;
}

.process {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 120px 0;
    text-align: center;
    border-top: 0px solid #eee;
}

.process > h2 {
    width: 100%;
    margin: 0;
    padding: 0 0 0px 0;
    font-size: 30px;
    font-weight: 650;
    letter-spacing: 0;
}

.process > h3 {
    margin: 0;
    padding: 10px 0 45px 0;
    font-size: 20px;
    font-weight: 350;
    letter-spacing: 0;
}

.process ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 0 0;
    box-sizing: border-box;
}

.process ul li {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 32%;
    padding: 35px 0;
    border: 2px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    color: #000;
    text-align: left;
    margin-bottom: 50px;
    box-sizing: border-box;
}

.process ul li .img {
    display: table;
    position: relative;
    margin: 0 auto;
    padding: 10px 10px;
    background: #1180c3;
    font-size: 24px;
    font-weight: 650;
    color: #fff;
}

.process ul li .img img {
    width: 100%;
}

.process ul li .txt {
    width: 100%;
    padding: 20px 0 0 0;
    border: 0px solid #eee;
    background: #fff;
    color: #000;
    text-align: center;
    box-sizing: border-box;
}

.process ul li .txt h2 {
    display: table;
    width: auto;
    margin: 0 auto;
    padding: 3px 25px;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 600;
}

.process ul li .txt h3 {
    margin: 0 auto;
    padding: 5px 0 15px 0;
    font-size: 20px;
    font-weight: 350;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }

    .process > h2 {
        font-size: 20px;
    }

    .process > h3 {
        padding: 10px 0 30px 0;
        font-size: 16px;
    }

    .process ul {
        gap: 20px;
        flex-direction: column;
        padding: 10px 15px;
    }

    .process ul li {
        width: 100%;
        padding: 25px 0;
        margin-bottom: 0px;
    }

    .process ul li .img {
        padding: 10px 10px;
        font-size: 18px;
    }

    .process ul li .txt h2 {
        padding: 2px 20px;
        font-size: 18px;
    }

    .process ul li .txt h3 {
        width: 80%;
        padding: 5px 0 10px 0;
        font-size: 16px;
    }
}

/* ✅ 기본 설정 */
.price {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.price-table {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* ✅ 표 스타일 */
table.comparison-table {
    width: 100%;
    border-radius: 20px;
    background: white;
    border-collapse: collapse;
}

table.comparison-table th,
table.comparison-table td {
    vertical-align: middle;
    padding: 1.2rem 0rem;
    /* 약 20px 13px */
    border: 1px solid #e0e4e8;
    font-size: 0.95rem;
    /* 약 18px */
    font-weight: 400;
    text-align: center;
}

table.comparison-table thead th {
    background: #ecf3fa;
    font-size: 1.25rem;
    /* 약 23px */
    font-weight: 700;
    color: #111111;
}

table.comparison-table td {
    background: #fff;
}

table.comparison-table .item-group {
    background: #f9f9f9;
    font-weight: 600;
    color: #272727;
}

table.comparison-table td[colspan="2"].item-group {
    text-align: center;
}

/* ✅ 강조 스타일 */
.comparison-table .highlightt {
    background: #c5e8ff;
    font-weight: 700;
    color: #0c4a6e;
}

.comparison-table .highlight {
    background: #e9f6ff;
    font-weight: 600;
    color: #0c4a6e;
}

/* ✅ note 스타일 */
.note {
    padding: 2rem 3rem;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    line-height: 1.7;
    color: #000;
    margin-top: 2rem;
}

.note-list {
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.note-list li {
    padding: 1.05rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #e2e8f0;
}

.note-list li:last-child {
    border-bottom: none;
}

.note-list strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.05rem;
}

.note-list strong::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3b82f6;
    content: "\f00c";
    margin-right: 0.5rem;
}

/* ✅ 반응형 (태블릿 및 모바일) */
@media (max-width: 1024px) {
    table.comparison-table th,
    table.comparison-table td {
        padding: 0.5rem 0.5rem;
        /* 약 16px 8px */
        font-size: 0.765rem;
        /* 약 16px */
    }

    table.comparison-table thead th {
        font-size: 1.05rem;
        /* 약 19px */
    }

    .note {
        padding: 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    /* ✅ 테이블을 감싸는 div에 스크롤 적용 */
    /* ✅ 스크롤 영역 생성 */
    .price-table {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        /* 하단 여백 (스크롤바와 테이블 분리) */
    }

    /* ✅ 테이블 자체에 하단 마진 추가 */
    .comparison-table {
        min-width: 800px;
        margin-bottom: 0rem;
        /* 스크롤바와 테이블 하단 간격 */
    }

    /* ✅ 스크롤바 스타일은 그대로 유지 */
    .price-table {
        scrollbar-width: auto;
        scrollbar-color: #bbb #fff;
    }

    .price-table::-webkit-scrollbar {
        height: 8px;
    }

    .price-table::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background: #bbb;
    }

    .price-table::-webkit-scrollbar-track {
        background: #fff;
    }

    /* ✅ 테이블에 최소 너비 지정 (가로로 넘길 수 있게) */
    .comparison-table {
        min-width: 800px;
    }

    .note {
        padding: 1rem 1rem;
        font-size: 1.05rem;
    }

    .note-list li {
        font-size: 0.855rem;
    }

    .note-list strong {
        font-size: 0.95rem;
    }
}

.view-wrap {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

/* 헤더 스타일 */
.view-header {
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.view-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 15px;
}

.view-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #888;
}

.view-meta i {
    margin-right: 5px;
}

/* 본문 스타일 */
.view-body {
    min-height: 300px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    word-break: keep-all;
}

.view-body img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin: 20px auto;
    border-radius: 8px;
}

.view-body p {
    margin-bottom: 15px;
}

/* 버튼 스타일 */
.view-btn-wrap {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.btn-list-go {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 4px;
    background: #333;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-list-go:hover {
    background: #111;
}

/* 로딩 스타일 */
#loading {
    padding: 80px 0;
    text-align: center;
}

.loading-spinner {
    font-size: 32px;
    color: #2196f3;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .view-title {
        font-size: 20px;
    }

    .view-wrap {
        margin: 30px auto;
    }
}

.board-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.board-header {
    text-align: center;
    margin-bottom: 60px;
}

.board-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.board-header p {
    font-size: 18px;
    color: #666;
}

/* 갤러리 그리드 */
.gallery-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
    display: block;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.gallery-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.gallery-card .img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-card .img-box img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    object-fit: cover;
}

.gallery-card:hover .img-box img {
    transform: scale(1.1);
}

.gallery-card .txt-box {
    padding: 25px;
}

.gallery-card .title {
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    white-space: nowrap;
    margin-bottom: 10px;
    text-overflow: ellipsis;
}

.gallery-card .date {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    color: #999;
}

.btn-more-wrap {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    padding: 15px 50px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-load-more:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

#initial-loading {
    padding: 100px 0;
    font-size: 18px;
    color: #666;
    text-align: center;
}

/* Board Pagination */
.board-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 60px 0 20px;
}

.board-pagination .pg-num,
.board-pagination .pg-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 4px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.board-pagination .pg-num:hover,
.board-pagination .pg-arrow:hover {
    background: #f0f4f8;
    border-color: #bbb;
    color: #222;
}

.board-pagination .pg-active {
    background: #17489d;
    border-color: #17489d;
    color: #fff;
    font-weight: 700;
    cursor: default;
}

.board-pagination .pg-arrow {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .gallery-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .board-container {
        margin: 50px auto;
    }

    .board-header h2 {
        font-size: 28px;
    }

    .gallery-list {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .gallery-card .img-box {
        height: 220px;
    }
}

/* V3 Refactored FAQ / Office02 Styles */




.faq-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.faq-box {
    padding: 40px;
    border-radius: 18px;
    background: #f8fafc;
    margin-bottom: 20px;
}

.faq-q {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* =========================================
   [NEW] Subpage Redesign (High-End B2B Modern Layout)
   Target: .title, .office01, .office02, .office03
   Theme: EASY CLEANING Premium (Minimal Line UI Overrides)
   ========================================= */

/* Typography Overrides */
.title {
    margin: 8rem 0 3rem 0 !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    color: #101828 !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
}
.title h2 { font-size: inherit !important; font-weight: 700 !important; }
.title.left, .title.lef { text-align: left !important; }

.btr { padding: 0 0 1.5rem !important; border-bottom: 1px solid #e2e8f0 !important; margin-bottom: 4rem !important; }






















































/* Responsive Overrides */
@media (max-width: 1024px) {
    .title { margin: 6rem 0 2rem 0 !important; font-size: 2.2rem !important; }







}

@media (max-width: 768px) {
    .title { margin: 4rem 0 1.5rem 0 !important; font-size: 1.8rem !important; font-weight: 700 !important; }
    .btr { padding: 0 0 1rem !important; margin-bottom: 2rem !important; }











}

/* =========================================
   Company Page (회사소개)
   ========================================= */

/* --- Company Hero Image --- */
.company-hero {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.company-hero .img ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-hero .img ul li img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- Company Intro (인사말) --- */
.company-intro {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
}

.company-intro ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-intro h1 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #1180c3;
    margin-bottom: 16px;
}

.company-intro h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    color: #111;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.company-intro h3 {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    color: #444;
    word-break: keep-all;
}

.company-intro h4 {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: right;
}

/* --- Company Services (차별화된 서비스) --- */
.company-services {
    width: 100%;
    padding: 80px 0;
    background: #f8fafc;
}

.company-services > h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.company-services > h2 span {
    color: #1180c3;
}

.company-services > h3 {
    font-size: 17px;
    font-weight: 400;
    color: #777;
    text-align: center;
    margin-bottom: 50px;
}

.company-services > ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    box-sizing: border-box;
}

.company-services > ul > li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap:50px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ecf0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-services > ul > li:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.company-services > ul > li .img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.company-services > ul > li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.company-services > ul > li:hover .img img {
    transform: scale(1.05);
}

.company-services > ul > li .txt {
    padding: 28px 24px;
}

.company-services > ul > li .txt h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.3;
}

.company-services > ul > li .txt h4 {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

/* --- Map Section (오시는길) --- */
.map01 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

.map01 .titles {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
}

.map01 .root_daum_roughmap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.map01 .wrap {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.map01 .wrap ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.map01 .wrap ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: background 0.3s ease;
}

.map01 .wrap ul li:last-child {
    border-right: none;
}

.map01 .wrap ul li:hover {
    background: #f0f7ff;
}

.map01 .wrap ul li span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1180c3;
    margin-bottom: 12px;
    white-space: nowrap;
}

.map01 .wrap ul li span i {
    font-size: 18px;
    color: #1180c3;
}

.map01 .wrap ul li p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.6;
    word-break: keep-all;
}

/* =========================================
   Company Page Responsive
   ========================================= */
@media (max-width: 1024px) {
    .company-hero {
        margin: 0 20px 40px;
        border-radius: 16px;
    }

    .company-intro h2 {
        font-size: 26px;
    }

    .company-services > ul {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .company-services > ul > li .img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .company-hero {
        margin: 0 16px 30px;
        border-radius: 12px;
    }

    .company-intro {
        margin-bottom: 50px;
        padding: 0 16px;
    }

    .company-intro h1 {
        font-size: 12px;
    }

    .company-intro h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .company-intro h3 {
        font-size: 15px;
        line-height: 1.8;
    }

    .company-intro h4 {
        font-size: 16px;
        margin-top: 30px;
    }

    .company-services {
        padding: 50px 0;
    }

    .company-services > h2 {
        font-size: 24px;
        padding: 0 20px;
    }

    .company-services > h3 {
        font-size: 15px;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .company-services > ul {
        padding: 0 16px;
        gap: 20px;
    }

    .company-services > ul > li .txt {
        padding: 20px 18px;
    }

    .company-services > ul > li .txt h3 {
        font-size: 18px;
    }

    .company-services > ul > li .txt h4 {
        font-size: 14px;
    }

    .map01 {
        padding: 50px 16px;
    }

    .map01 .titles {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .map01 .wrap {
        padding: 0;
    }

    .map01 .wrap ul {
        grid-template-columns: 1fr;
    }

    .map01 .wrap ul li {
        padding: 24px 16px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .map01 .wrap ul li:last-child {
        border-bottom: none;
    }

    .map01 .wrap ul li p {
        font-size: 15px;
    }
}

/* =========================================
   Dynamic Contact Form (Plugin Integration)
   ========================================= */
.sc-contact-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px;
    box-sizing: border-box;
}

.sc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.sc-field {
    display: flex;
    flex-direction: column;
}

.sc-field-full {
    grid-column: 1 / -1;
}

.sc-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.sc-req {
    color: #e74c3c;
    margin-left: 2px;
}

.sc-field input[type="text"],
.sc-field input[type="date"],
.sc-field select,
.sc-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.sc-field input:focus,
.sc-field select:focus,
.sc-field textarea:focus {
    border-color: #0082cb;
    outline: none;
}

.sc-field textarea {
    resize: vertical;
    min-height: 80px;
}

.sc-file-input {
    width: 100%;
    padding: 6px 0;
    font-size: 13px;
    margin-bottom: 4px;
}

.sc-file-desc {
    font-size: 12px;
    color: #888;
    margin: 0 0 8px;
}

.sc-privacy {
    margin-bottom: 20px;
}

.sc-privacy-box {
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    background: #fafbfc;
}

.sc-privacy-text {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.sc-agree {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.sc-agree input {
    margin-right: 8px;
}

.sc-submit-btn {
    width: 100%;
    padding: 14px;
    background: #0082cb;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.sc-submit-btn:hover {
    background: #0069a3;
}

.sc-submit-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.sc-form-msg {
    margin-top: 12px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.sc-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.sc-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.sc-radio,
.sc-check {
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
    font-size: 14px;
    cursor: pointer;
}

.sc-radio input,
.sc-check input {
    margin-right: 4px;
}

/* online.html full-width form */
.sc-full-form .sc-form-grid {
    gap: 20px;
}

.sc-full-form .sc-field input[type="text"],
.sc-full-form .sc-field input[type="date"],
.sc-full-form .sc-field select,
.sc-full-form .sc-field textarea {
    padding: 14px 16px;
    font-size: 15px;
}

.sc-full-form .sc-field label {
    font-size: 16px;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .sc-form-grid {
        grid-template-columns: 1fr;
    }

    .sc-contact-form {
        padding: 20px 15px;
    }

    .sc-submit-btn {
        font-size: 15px;
        padding: 12px;
    }
}

/* =========================================
   [MODERN BEM STRUCTURE] Service Pages
   ========================================= */

.svc-intro { display: flex; flex-direction: column; width: 100%; max-width: 1400px; margin: 0 auto 100px; padding: 0 24px; box-sizing: border-box; }
.svc-intro__img { width: 100%; height: 500px; border-radius: 8px; overflow: hidden; margin: 0; }
.svc-intro__img img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center center; }
.svc-intro__txt { padding: 50px 0 0 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.svc-intro__txt h2 { font-size: 30px; font-weight: 700; line-height: 1.4; color: #0f172a; margin-bottom: 30px; letter-spacing: -0.02em; }
.svc-intro__txt p { font-size: 17px; font-weight: 400; line-height: 1.9; color: #475569; margin: 0; word-break: keep-all; text-align: center; }

/* 2. Scope Section */
.svc-scope { width: 100%; padding: 120px 0; background: #ffffff; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.svc-scope__title { font-size: 36px; font-weight: 700; color: #0f172a; text-align: center; margin-bottom: 80px; letter-spacing: -0.02em; }
.svc-scope__grid { display: grid; grid-template-columns: 1fr; gap: 80px; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.svc-scope__item { display: flex; align-items: stretch; flex-direction: row; gap: 60px; overflow: hidden; }
.svc-scope__img { flex: 0 0 45%; overflow: hidden; border-radius: 8px; height: 380px; margin: 0; }
.svc-scope__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.svc-scope__item:hover .svc-scope__img img { transform: scale(1.03); }
.svc-scope__content { flex: 1; padding: 20px 0; display: flex; flex-direction: column; justify-content: center; }
.svc-scope__content h3 { font-size: 26px; font-weight: 700; color: #0f172a; margin: 0 0 25px 0; padding-bottom: 15px; border-bottom: 1px solid #e2e8f0; letter-spacing: -0.01em; }
.svc-scope__content ul { list-style: none; padding: 0; margin: 0; }
.svc-scope__content li { font-size: 17px; line-height: 1.8; color: #475569; margin-bottom: 16px; font-weight: 400; display: flex; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid #f8fafc; }
.svc-scope__content li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-scope__content li::before { content: "\e933"; font-family: "xeicon"; font-size: 18px; color: #0082cb; margin-right: 12px; margin-top: 2px; font-weight: normal; }

/* 3. Target Section */
.svc-target { width: 100%; max-width: 1400px; margin: 0 auto; padding: 120px 24px; box-sizing: border-box; text-align: center; }
.svc-target__title { font-size: 36px; font-weight: 700; color: #0f172a; margin-bottom: 80px; letter-spacing: -0.02em; }
.svc-target__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 80px; }
.svc-target__gallery img { width: 100%; aspect-ratio: 16 / 9; border-radius: 8px; object-fit: cover; flex: 1; display: block; }
.svc-target__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 0; margin: 0; }
.svc-target__item { padding: 40px 30px; border: 1px solid #f1f5f9; background: transparent; text-align: center; transition: all 0.4s ease; display: flex; flex-direction: column; position: relative; }
.svc-target__item::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: #0082cb; transition: width 0.4s ease; }
.svc-target__item:hover { border-color: transparent; background: #f8fafc; }
.svc-target__item:hover::after { width: 100%; }
.svc-target__item h3 { font-size: 22px; font-weight: 700; color: #0f172a; margin: 0 0 10px 0; transition: color 0.4s; }
.svc-target__item h3::before { display: block; font-family: "Font Awesome 6 Free"; font-size: 44px; color: #0082cb; margin-bottom: 5px; content: "\f14a"; font-weight: 900; transition: color 0.4s; }
.svc-target__item:hover h3 { color: #0082cb; }
.svc-target__item:hover h3::before { color: #0082cb; }
.svc-target__item p { font-size: 16px; line-height: 1.7; color: #64748b; font-weight: 400; margin: 0; }

/* Responsive Overrides for Modern BEM */
@media (max-width: 1024px) {
    .svc-intro { padding: 0 24px; margin-bottom: 80px; }
    .svc-intro__img { height: 350px; }
    .svc-intro__txt { padding-top: 40px; }
    .svc-intro__txt h2 { font-size: 26px; }
    .svc-scope__item { flex-direction: column; gap: 10px; }
    .svc-scope__img { flex: none; height: 320px; }
    .svc-target__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .svc-intro__img { height: 250px; }
    .svc-intro__txt h2 { font-size: 22px; margin-bottom: 20px; }
    .svc-intro__txt p { font-size: 15px; }
    .svc-scope { padding: 60px 0; }
    .svc-scope__title { font-size: 26px; margin-bottom: 40px; }
    .svc-scope__grid { gap: 40px; }
    .svc-scope__img { height: 250px; }
    .svc-scope__content h3 { font-size: 22px; margin-bottom: 15px; }
    .svc-target { padding: 60px 24px; }
    .svc-target__title { font-size: 26px; margin-bottom: 40px; }
    .svc-target__gallery { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .svc-target__grid { grid-template-columns: 1fr; gap: 20px; }
}
