.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: 440px;
    margin: 0 auto;
    overflow: hidden;
    background: #00489e;
    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: #00489e;
}

/* ✅ 태블릿 대응 (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: #00489e;
    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;
    height: 60px;
    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;
        padding: 0 0;
    }

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

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

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

    #tap ul {
        width: auto;
        height: 35px;
        margin: 0 auto;
    }

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

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

.feature {
    margin: 2rem 0;
    /* 위아래 32px */
    padding: 1.5rem;
    /* 약 24px */
    border: 2px solid #00489e;
    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: #00489e;
}

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

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

/* 1. Intro Section (Modern Split Hero) */
.office01 {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
    /* Text Left, Image Right visual flow (if HTML is Img first, this swaps it unless we want Img Left) - User HTML: Img then Text. Row-reverse puts Text(2) on Left, Img(1) on Right. Correct. */
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0;
    text-align: left;
}

.office01 .img {
    flex: 1;
    width: 100%;
    max-width: none;
    height: 400px;
    /* Reduced height for balance */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.office01 .text-content {
    flex: 0 0 45%;
    /* Text takes 45% */
    padding: 0;
    background: transparent;
    text-align: left;
}

.office01 .text-content h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.office01 .text-content h2::after {
    display: block;
    width: 60px;
    height: 4px;
    background: #00489e;
    content: "";
    margin-top: 20px;
}

.office01 .text-content ul li {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #334155;
}

/* 2. Service Scope (Premium Card Grid) */
.office02 {
    width: 100%;
    padding: 80px 0;
    background: #f8fafc;
    /* Light gray background for contrast */
    border-top: none;
}

.office02 > h2 {
    padding: 0;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 50px;
}


.office02 > ul {
    display: grid;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Safe padding */
}

/* Card Style */
.office02 > ul > li {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    margin-bottom: 0;
    /* Remove old margin */
}

.office02 > ul > li:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.office02 > ul > li .img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    /* Full width image */
}

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


.office02 > ul > li > ul {
    width: 100%;
    margin: 0;
    padding: 30px 50px;
}

.office02 > ul > li > ul h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.office02 > ul > li > ul > li {
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 8px;
}

/* Icon style reset */
.office02 > ul > li > ul > li::before {
    font-family: inherit;
    font-weight: bold;
    color: #00489e;
    /* Theme Color */
    content: "✔";
    /* Simple checkmark or keep icon */
    margin-right: 8px;
}





/* 3. Service Targets (Icon Info Box) */
.office03 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0;
    border: none;
    text-align: center;
}

.office03 > h2 {
    padding: 0;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
}

/* Hide Old Image Block if it exists */
.office03 .img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.office03 .img ul {
    display: flex;
    gap: 30px;
}

.office03 .img ul li {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

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

.office03 > ul {
    display: grid;
    gap: 20px;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 0;
    grid-template-columns: repeat(3, 1fr);
    /* 4 Columns */
    margin-top: 0;
}

.office03 > ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 30px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    background: #fff;
    text-align: center;
    transition: 0.3s;
    padding-left: 20px;
    /* Reset */
}

.office03 > ul > li:hover {
    box-shadow: 0 10px 20px rgba(70, 191, 219, 0.15);
    border-color: #00489e;
    transform: translateY(-5px);
}

.office03 > ul > li h2 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* Icon Replacement for Target List */
.office03 > ul > li h2::before {
    display: block;
    /* block 대신 inline-block 추천 (줄바꿈 방지) */
    vertical-align: middle;
    /* 높이 중앙 정렬 */
    font-family: "Font Awesome 6 Free";
    /* 폰트어썸 5 지정 */
    font-size: 32px;
    font-weight: 900;
    /* ★중요: 아이콘을 채우려면 900 필수 */
    color: #00489e;
    content: "\f14a";
    /* 아이콘 코드: 체크 사각형 (Check Square) */
}

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

.office03 > ul > li {
    font-size: 18px;
    line-height: 1.5;
    color: #334155;
}

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

@media (max-width: 1024px) {
    /* Intro */
    .office01 {
        gap: 30px;
        flex-direction: column;
    }

    .office01 .img {
        height: 300px;
    }

    .office01 .text-content {
        flex: auto;
        width: 100%;
        padding: 0 20px;
    }

    .office01 .text-content h2 {
        font-size: 28px;
    }

    /* Scope */
    .office02 > ul {
        grid-template-columns: 1fr;
    }

    /* 1 Column */
    .office02 > ul > li {
        flex-direction: column;
    }

    .office02 > ul > li > ul {
        padding: 20px 20px;
    }


    /* Stack */

    /* Targets */
    .office03 > ul {
        padding: 0 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .office01 {
        margin-bottom: 40px;
    }

    .office01 .img {
        height: 220px;
    }

    .office01 .text-content {
        padding: 0 16px;
    }

    .office01 .text-content h2 {
        font-size: 22px;
    }

    .office01 .text-content ul li {
        font-size: 15px;
        line-height: 1.7;
        word-break: keep-all;
    }

    .office02 {
        padding: 50px 0;
    }

    .office02 > h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

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

    .office02 > ul > li > ul > li {
        font-size: 14px;
        line-height: 1.6;
    }

    .office03 > ul {
        grid-template-columns: 1fr;
    }

    .office03 > h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .office03 > ul > li {
        padding: 25px 16px;
    }

    .office03 > ul > li h2 {
        font-size: 16px;
    }

    .office03 > ul > li {
        font-size: 14px;
    }

    .office03 .img ul {
        flex-direction: column;
        padding: 0 16px;
    }

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

.log > ul > li > ul h2::before {
    vertical-align: middle;
    font-family: "Font Awesome 6 Free";
    font-size: 1.05rem;
    font-weight: 600;
    color: #00489e;
    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: #00489e;
    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: 2rem 0;
    }

    .office04 > h2 {
        padding: 0.5rem 0 1rem 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .office04 > ul > li {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: keep-all;
    }

    .office04 > ul > li h2 {
        font-size: 1rem;
    }
}

.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: #334155;
    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: #00489e;
}

.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: 2rem 0.5rem;
    }

    .ceo01 .txt {
        padding: 0 1rem;
        font-size: 0.95rem;
        line-height: 1.7;
        word-break: keep-all;
    }

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

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

    .ceo01 .sign {
        font-size: 1rem;
        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: #111;
    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: #f0f6ff;
    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: #00489e;
    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: 2rem 1rem;
        margin-top: 2rem;
    }

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

    .trust > ul {
        gap: 1rem;
    }

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

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

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

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

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

    .trust > ul > li > .txt p {
        font-size: 0.8rem;
        line-height: 1.5;
        word-break: keep-all;
    }
}

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

.service-list > h2 {
    font-size: 1.75rem;
    /* 28px */
    font-weight: 700;
    color: #111;
    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 #00489e;
    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: #00489e;
    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: #00489e;
}

.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%;
    }

    .office02 .inner > ul {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .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: #00489e;
    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: 40px 16px;
        margin-top: 20px;
    }

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

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

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

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

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

    .comp_ci > ul > li {
        padding: 0;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 28px;
        word-break: keep-all;
    }
}

.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: #00489e;
    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: #00489e;
    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: #00489e;
}

.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: #31ad34;
    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: #00489e;
    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: #111;
}

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: #334155;
    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: #111;
    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: #334155;
}

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

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

@media (max-width: 768px) {
    .board-container {
        margin: 30px auto;
        padding: 0 16px;
    }

    .board-header {
        margin-bottom: 30px;
    }

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

    .board-header p {
        font-size: 14px;
    }

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

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

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

    .gallery-card .title {
        font-size: 16px;
    }
}

/* V3 Refactored FAQ / Office02 Styles */
.office02.mt-60 {
    margin-top: 60px;
}

.office02 .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.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: #00489e;
    margin-bottom: 15px;
}

.faq-a {
    font-size: 18px;
    line-height: 1.6;
    color: #475569;
}

.faq-mb {
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    gap: 15px;
    flex-direction: column;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.faq-item {
    font-size: 18px;
    color: #334155;
}

.faq-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #46bfdb;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 20px;
    }

    .faq-box {
        padding: 24px;
    }

    .faq-q {
        font-size: 16px;
    }

    .faq-a,
    .faq-item,
    .faq-highlight {
        font-size: 15px;
    }
}
/* =========================================
   [NEW] Subpage Redesign (High-End B2B Modern Layout)
   Target: .title, .office01, .office02, .office03
   Theme: SMILE CLEAN Premium (Appended Overrides)
   ========================================= */

/* Typography Overrides */
.title {
    margin: 8rem 0 3rem 0 !important;
    font-size: 2.8rem !important;
    font-weight: 300 !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: 2px solid #f1f5f9 !important;
    margin-bottom: 4rem !important;
}

/* 1. Intro Section (Modern Split Hero) */
.office01 {
    display: flex !important;
    gap: 80px !important;
    align-items: center !important;
    flex-direction: row-reverse !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto 120px !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

.office01 .img {
    flex: 1 !important;
    width: 100% !important;
    height: 480px !important;
    border-radius: 8px !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

.office01 .img ul, .office01 .img ul li, .office01 .img ul li img {
    width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important;
}

.office01 .text-content {
    flex: 0 0 45% !important;
}

.office01 .text-content h2 {
    font-size: 42px !important;
    font-weight: 300 !important;
    line-height: 1.3 !important;
    color: #101828 !important;
    margin-bottom: 30px !important;
    letter-spacing: -0.02em !important;
    border-bottom: none !important;
}

.office01 .text-content h2::after {
    display: block !important; width: 60px !important; height: 3px !important; background: #00489e !important; content: "" !important; margin-top: 24px !important;
}

.office01 .text-content ul li {
    font-size: 18px !important; font-weight: 300 !important; line-height: 1.8 !important; color: #64748b !important; margin-bottom: 12px !important; word-break: keep-all !important;
}

/* 2. Service Scope (Premium Card Grid) */
.office02 {
    width: 100% !important; padding: 100px 0 !important; background: #f8fafc !important; border-top: 1px solid #e2e8f0 !important; border-bottom: 1px solid #e2e8f0 !important;
}

.office02 > h2 {
    font-size: 42px !important; font-weight: 300 !important; color: #101828 !important; text-align: center !important; margin-bottom: 60px !important; letter-spacing: -0.02em !important; padding: 0 !important;
}

.office02 > ul {
    display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 40px !important; width: 100% !important; max-width: 1400px !important; margin: 0 auto !important; padding: 0 24px !important; box-sizing: border-box !important;
}

.office02 > ul > li {
    display: flex !important; height: 100% !important; align-items: stretch !important; background: #ffffff !important; border: 1px solid #e2e8f0 !important; border-radius: 12px !important; box-shadow: 0 20px 40px rgba(0,0,0,0.04) !important; overflow: hidden !important; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important; flex-direction: row !important; margin-bottom: 0 !important;
}

.office02 > ul > li:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08) !important; transform: translateY(-10px) !important; border-color: transparent !important;
}

.office02 > ul > li .img {
    flex: 0 0 40% !important; overflow: hidden !important; position: relative !important; width: auto !important; height: auto !important;
}

.office02 > ul > li .img img {
    width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 0.6s ease !important;
}
.office02 > ul > li:hover .img img { transform: scale(1.05) !important; }

.office02 > ul > li > ul {
    flex: 1 !important; padding: 40px !important; display: flex !important; flex-direction: column !important; justify-content: center !important; margin: 0 !important;
}

.office02 > ul > li > ul h2 {
    font-size: 24px !important; font-weight: 700 !important; color: #101828 !important; margin-bottom: 20px !important; padding-bottom: 20px !important; border-bottom: 1px solid #f1f5f9 !important; letter-spacing: -0.01em !important;
}
.office02 > ul > li > ul h2::before { display: none !important; }

.office02 > ul > li > ul > li {
    font-size: 16px !important; line-height: 1.7 !important; color: #64748b !important; margin-bottom: 12px !important; font-weight: 300 !important; display: flex !important; align-items: flex-start !important;
}
.office02 > ul > li > ul > li::before {
    content: "\f00c" !important; font-family: "Font Awesome 6 Free" !important; font-size: 18px !important; color: #00489e !important; margin-right: 10px !important; margin-top: 2px !important; font-weight: 900 !important;
}

/* 3. Service Targets (Icon Info Box) */
.office03 {
    width: 100% !important; max-width: 1400px !important; margin: 0 auto !important; padding: 120px 24px !important; box-sizing: border-box !important; text-align: center !important; border: none !important;
}

.office03 > h2 {
    font-size: 42px !important; font-weight: 300 !important; color: #101828 !important; margin-bottom: 60px !important; letter-spacing: -0.02em !important; padding: 0 !important;
}

.office03 .img { width: 100% !important; margin-bottom: 60px !important; }
.office03 .img ul { display: flex !important; gap: 40px !important; }
.office03 .img ul li { width: 100% !important; border-radius: 12px !important; overflow: hidden !important; box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important; }
.office03 .img ul li img { width: 100% !important; height: 100% !important; object-fit: cover !important; display:block !important; }

.office03 > ul {
    display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 30px !important; padding: 0 !important; border: none !important; margin: 0 !important;
}

.office03 > ul > li {
    padding: 40px 30px !important; border: 1px solid #e2e8f0 !important; border-radius: 12px !important; background: #ffffff !important; text-align: center !important; transition: all 0.4s ease !important; flex-direction: column !important;
}

.office03 > ul > li:hover {
    box-shadow: 0 20px 40px rgba(0, 137, 123, 0.08) !important; border-color: #00489e !important; transform: translateY(-5px) !important;
}

.office03 > ul > li h2 {
    font-size: 20px !important; font-weight: 700 !important; color: #101828 !important; margin-bottom: 16px !important; padding: 0 !important; border: none !important; margin-top: 0 !important;
}

.office03 > ul > li h2::before {
    display: block !important; font-family:"Font Awesome 5 Free"; font-size: 44px !important; color: #00489e !important; margin-bottom: 0px !important; content: "\f14a" !important; font-weight: normal !important; margin-right: 0 !important;
}

.office03 > ul > li { font-size: 16px !important; line-height: 1.7 !important; color: #64748b !important; font-weight: 300 !important; }

/* Responsive Overrides */
@media (max-width: 1024px) {
    .title { margin: 6rem 0 2rem 0 !important; font-size: 2.2rem !important; }
    .office01 { gap: 40px !important; flex-direction: column !important; padding: 0 24px !important; margin-bottom: 80px !important; }
    .office01 .img { height: 400px !important; }
    .office01 .text-content h2 { font-size: 36px !important; }
    .office02 > ul { grid-template-columns: 1fr !important; }
    .office03 > ul { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .title { margin: 3rem 0 1.25rem 0 !important; font-size: 1.4rem !important; font-weight: 700 !important; }
    .btr { padding: 0 0 0.75rem !important; margin-bottom: 1.5rem !important; }
    .office01 .img { height: 220px !important; }
    .office01 .text-content h2 { font-size: 24px !important; }
    .office01 .text-content h2::after { margin-top: 12px !important; }
    .office01 .text-content ul li { font-size: 15px !important; word-break: keep-all !important; }
    .office02 { padding: 50px 0 !important; }
    .office02 > h2 { font-size: 24px !important; margin-bottom: 30px !important; }
    .office02 > ul > li { flex-direction: column !important; }
    .office02 > ul > li .img { flex: none !important; height: 200px !important; width: 100% !important; }
    .office02 > ul > li > ul { padding: 24px 16px !important; }
    .office02 > ul > li > ul h2 { font-size: 18px !important; }
    .office02 > ul > li > ul > li { font-size: 14px !important; }
    .office03 { padding: 50px 16px !important; }
    .office03 > h2 { font-size: 24px !important; margin-bottom: 30px !important; }
    .office03 > ul { grid-template-columns: 1fr !important; }
    .office03 > ul > li { padding: 30px 20px !important; }
    .office03 > ul > li h2 { font-size: 17px !important; }
    .office03 > ul > li { font-size: 14px !important; }
    .office03 .img ul { flex-direction: column !important; gap: 16px !important; }
}
