        :root {
            --primary: #2f78c8;
            --primary-dark: #1f5f9f;
            --primary-light: #eef6ff;
            --secondary: #d99d55;
            --secondary-light: #fff5e8;
            --point: #e86f51;
            --navy: #182b3a;
            --text: #303b3f;
            --gray: #677276;
            --light-gray: #f5f7f6;
            --line: #dce3ea;
            --white: #ffffff;
            --shadow: 0 18px 45px rgba(31, 95, 159, 0.10);
            --radius: 22px;
            --header-height: 104px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family:
                "Pretendard",
                "Noto Sans KR",
                "Apple SD Gothic Neo",
                "Malgun Gothic",
                sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.65;
            word-break: keep-all;
        }

        body.menu-open {
            overflow: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul,
        ol {
            list-style: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        button {
            border: 0;
            cursor: pointer;
        }

        .blind {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
        }

        .inner {
            width: min(1280px, calc(100% - 48px));
            margin: 0 auto;
        }

        .section {
            padding: 110px 0;
        }

        .section-head {
            margin-bottom: 48px;
        }

        .section-head.center {
            max-width: 750px;
            margin-right: auto;
            margin-bottom: 55px;
            margin-left: auto;
            text-align: center;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--primary);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.06em;
        }

        .section-eyebrow::before {
            width: 26px;
            height: 2px;
            background: var(--secondary);
            content: "";
        }

        .section-title {
            color: var(--navy);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.045em;
        }

        .section-title strong {
            color: var(--primary);
        }

        .section-desc {
            margin-top: 18px;
            color: var(--gray);
            font-size: 18px;
            line-height: 1.8;
        }

        .btn {
            display: inline-flex;
            min-height: 56px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 28px;
            border: 1px solid transparent;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 800;
            transition:
                transform 0.25s ease,
                background 0.25s ease,
                color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .btn-primary {
            color: var(--white);
            background: var(--primary);
            box-shadow: 0 14px 30px rgba(53, 120, 103, 0.28);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-light {
            border-color: rgba(255, 255, 255, 0.42);
            color: var(--white);
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
        }

        .btn-light:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .btn-outline {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--white);
        }

        .btn-outline:hover {
            color: var(--white);
            background: var(--primary);
        }

        /* =========================================================
   상단 안내 및 헤더
========================================================= */

/* 상단 안내 띠 */
.topbar {
    height: 30px;
    color: #ffffff;
    background: #4ba6d8;
    font-size: 11px;
    font-weight: 400;
}

.topbar .inner {
    display: flex;
    height: 100%;
    align-items: center;
}

.topbar-message {
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-links a:hover {
    color: #ffffff;
}

/* 헤더 */
.site-header {
    position: relative;
    z-index: 1000;
    height: 104px;
    border-bottom: 1px solid #e3e7eb;
    background: #ffffff;
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

/* 헤더 로고 */
/* 헤더 로고 위치 조정 */
.site-logo-wrap {
    position: relative;
    top: -2px;
}

.site-logo {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.site-logo-full {
    display: block;
    width: auto;
    height: 68px;
    max-width: none;
    object-fit: contain;
}

/* PC 메인 메뉴 */
.main-navigation {
    display: flex;
    align-self: stretch;
    justify-content: center;
}

.gnb {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.gnb > li {
    position: relative;
    height: 100%;
}

.gnb > li > a {
    display: flex;
    min-height: 104px;
    align-items: center;
    padding: 0 18px;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.gnb > li > a::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 3px;
    background: #2f78c8;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
    content: "";
}

.gnb > li:hover > a,
.gnb > li > a:focus {
    color: #2f78c8;
}

.gnb > li:hover > a::after,
.gnb > li > a:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

/* PC 서브메뉴 */
.submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 220px;
    padding: 12px;
    border: 1px solid #dce3ea;
    border-radius: 3px;
    visibility: hidden;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(38, 65, 91, 0.12);
    opacity: 0;
    transform: translate(-50%, 8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.gnb > li:hover .submenu,
.gnb > li:focus-within .submenu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.submenu li + li {
    margin-top: 1px;
}

.submenu a {
    display: block;
    padding: 12px 15px;
    border-radius: 2px;
    color: #333333;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.submenu a:hover,
.submenu a:focus {
    color: #1f5f9f;
    background: #eef6ff;
}

/* 우측 상담 버튼 */
.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.header-call {
    display: flex;
    min-width: 210px;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    border-radius: 999px;
    color: #ffffff;
    background: #e86f50;
    box-shadow: 0 10px 24px rgba(233, 160, 100, 0.22);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.header-call:hover {
    color: #ffffff;
    background: #d78245;
    transform: translateY(-2px);
}

.header-call > i {
    font-size: 17px;
}

.header-call > span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-call small {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 400;
}

.header-call strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.015em;
}

/* 모바일 메뉴 버튼 */
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce3ea;
    border-radius: 4px;
    background: #ffffff;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background: #2f78c8;
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-toggle span::before {
    top: -7px;
}

.menu-toggle span::after {
    top: 7px;
}

/* 메인 비주얼 */
        .hero {
            position: relative;
            min-height: 720px;
            overflow: hidden;
            color: var(--white);
            background:
                linear-gradient(
                    90deg,
                    rgba(25, 65, 55, 0.93) 0%,
                    rgba(34, 86, 72, 0.82) 43%,
                    rgba(31, 73, 62, 0.30) 100%
                ),
                url("/img/main/main_visual01.jpg") center 40% / cover no-repeat,
                linear-gradient(135deg, #2b6d5c, #88b5a1);
        }

        .hero::before {
            position: absolute;
            top: -170px;
            right: -170px;
            width: 500px;
            height: 500px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 50%;
            content: "";
        }

        .hero::after {
            position: absolute;
            right: 10%;
            bottom: -230px;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            content: "";
        }

        .hero .inner {
            position: relative;
            z-index: 2;
            display: flex;
            min-height: 720px;
            align-items: center;
        }

        .hero-content {
            max-width: 710px;
            padding: 85px 0 135px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 26px;
            padding: 9px 15px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.11);
            font-size: 14px;
            font-weight: 700;
            backdrop-filter: blur(8px);
        }

        .hero-label::before {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffdb8b;
            box-shadow: 0 0 0 5px rgba(255, 219, 139, 0.14);
            content: "";
        }

        .hero h2 {
            font-size: clamp(44px, 6.3vw, 76px);
            font-weight: 850;
            line-height: 1.15;
            letter-spacing: -0.055em;
        }

        .hero h2 em {
            display: block;
            color: #ffdda4;
            font-style: normal;
        }

        .hero-desc {
            max-width: 640px;
            margin-top: 27px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 19px;
            line-height: 1.85;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 40px;
        }

        .hero-info {
            position: absolute;
            z-index: 3;
            right: 0;
            bottom: 0;
            left: 0;
        }

        .hero-info .inner {
            display: grid;
            min-height: auto;
            grid-template-columns: repeat(3, 1fr);
            overflow: hidden;
            border-radius: 24px 24px 0 0;
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 -10px 40px rgba(22, 58, 49, 0.17);
            backdrop-filter: blur(14px);
        }

        .hero-info-item {
            display: flex;
            min-height: 105px;
            align-items: center;
            gap: 16px;
            padding: 23px 34px;
            color: var(--text);
        }

        .hero-info-item + .hero-info-item {
            border-left: 1px solid var(--line);
        }

        .hero-info-icon {
            display: grid;
            width: 49px;
            height: 49px;
            flex: 0 0 49px;
            place-items: center;
            border-radius: 16px;
            color: var(--primary);
            background: var(--primary-light);
            font-size: 24px;
        }

        .hero-info-item small {
            display: block;
            margin-bottom: 2px;
            color: var(--gray);
            font-size: 12px;
            font-weight: 700;
        }

        .hero-info-item strong {
            display: block;
            color: var(--navy);
            font-size: 17px;
            line-height: 1.4;
        }

        /* 바로가기 */
        .quick-menu {
            position: relative;
            z-index: 5;
            padding: 64px 0 20px;
            background: var(--white);
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .quick-item {
            position: relative;
            display: flex;
            min-height: 160px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 25px 12px;
            border: 1px solid var(--line);
            border-radius: 20px;
            text-align: center;
            background: var(--white);
            transition:
                transform 0.28s ease,
                border-color 0.28s ease,
                box-shadow 0.28s ease,
                background 0.28s ease;
        }

        .quick-item::after {
            position: absolute;
            right: -20px;
            bottom: -35px;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--primary-light);
            opacity: 0;
            transition: opacity 0.25s ease;
            content: "";
        }

        .quick-item:hover {
            border-color: transparent;
            background: #fbfdfc;
            box-shadow: var(--shadow);
            transform: translateY(-7px);
        }

        .quick-item:hover::after {
            opacity: 1;
        }

        .quick-icon {
            position: relative;
            z-index: 1;
            display: grid;
            width: 58px;
            height: 58px;
            margin-bottom: 17px;
            place-items: center;
            border-radius: 20px;
            color: var(--primary);
            background: var(--primary-light);
            font-size: 27px;
            transition: 0.25s ease;
        }

        .quick-item:hover .quick-icon {
            color: var(--white);
            background: var(--primary);
            transform: rotate(-4deg) scale(1.05);
        }

        .quick-item strong {
            position: relative;
            z-index: 1;
            color: var(--navy);
            font-size: 16px;
        }

        .quick-item span {
            position: relative;
            z-index: 1;
            margin-top: 5px;
            color: var(--gray);
            font-size: 12px;
        }

        /* 센터 소개 */
        .about {
            background:
                radial-gradient(circle at 5% 10%, rgba(53, 120, 103, 0.08), transparent 24%),
                var(--white);
        }

        .about-grid {
            display: grid;
            align-items: center;
            grid-template-columns: 1.03fr 0.97fr;
            gap: 78px;
        }

        .about-image {
            position: relative;
            min-height: 550px;
        }

      .about-image-main {
    width: 83%;
    height: 500px;
    overflow: hidden;
    border-radius: 40px 40px 40px 9px;
    background:
        linear-gradient(
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.03)
        ),
        url("/img/main/about_center.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}


        .about-image-sub {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 48%;
            height: 245px;
            border: 10px solid var(--white);
            border-radius: 30px 8px 30px 30px;
            background:
                url("/img/main/about_care.jpg") center / cover no-repeat,
                linear-gradient(135deg, #f4e8d3, #d7ab77);
            box-shadow: var(--shadow);
        }

        .about-badge {
            position: absolute;
            top: 38px;
            right: 10px;
            display: grid;
            width: 135px;
            height: 135px;
            place-items: center;
            border: 8px solid var(--white);
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            background: var(--secondary);
            box-shadow: 0 15px 30px rgba(160, 110, 50, 0.20);
            transform: rotate(5deg);
        }

        .about-badge strong {
            font-size: 24px;
            line-height: 1.1;
        }

        .about-badge span {
            display: block;
            margin-top: 5px;
            font-size: 12px;
            font-weight: 700;
        }

        .about-list {
            display: grid;
            gap: 15px;
            margin: 33px 0 36px;
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 13px;
            color: #455256;
            font-size: 16px;
            font-weight: 650;
        }

        .about-list li::before {
            display: grid;
            width: 27px;
            height: 27px;
            flex: 0 0 27px;
            place-items: center;
            border-radius: 50%;
            color: var(--primary);
            background: var(--primary-light);
            font-size: 14px;
            font-weight: 900;
            content: "✓";
        }

        .about-stat {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin-top: 42px;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 18px;
        }

        .about-stat > div {
            padding: 20px 15px;
            text-align: center;
        }

        .about-stat > div + div {
            border-left: 1px solid var(--line);
        }

        .about-stat strong {
            display: block;
            color: var(--primary);
            font-size: 23px;
            line-height: 1.25;
        }

        .about-stat span {
            display: block;
            margin-top: 4px;
            color: var(--gray);
            font-size: 12px;
            font-weight: 650;
        }

        /* 서비스 */
        .services {
            background: var(--light-gray);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .service-card {
            position: relative;
            min-height: 445px;
            overflow: hidden;
            border-radius: 28px;
            color: var(--white);
            background: var(--navy);
            box-shadow: 0 18px 35px rgba(35, 59, 71, 0.13);
        }

        .service-bg {
            position: absolute;
            inset: 0;
            background-position: center;
            background-size: cover;
            transition: transform 0.55s ease;
        }

        .service-card:nth-child(1) .service-bg {
            background-image:
                linear-gradient(to top, rgba(24, 69, 57, 0.96), rgba(24, 69, 57, 0.12)),
                url("/img/main/service01.jpg");
        }

        .service-card:nth-child(2) .service-bg {
            background-image:
                linear-gradient(to top, rgba(77, 67, 41, 0.95), rgba(77, 67, 41, 0.15)),
                url("/img/main/service02.jpg");
        }

        .service-card:nth-child(3) .service-bg {
            background-image:
                linear-gradient(to top, rgba(40, 67, 85, 0.96), rgba(40, 67, 85, 0.15)),
                url("/img/main/service03.jpg");
        }

        .service-card:nth-child(4) .service-bg {
            background-image:
                linear-gradient(to top, rgba(70, 52, 76, 0.96), rgba(70, 52, 76, 0.15)),
                url("/img/main/service04.jpg");
        }

        .service-card:hover .service-bg {
            transform: scale(1.07);
        }

        .service-content {
            position: absolute;
            z-index: 2;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 34px 30px;
        }

        .service-number {
            display: inline-flex;
            width: 46px;
            height: 46px;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.14);
            font-size: 14px;
            font-weight: 800;
            backdrop-filter: blur(7px);
        }

        .service-content h3 {
            font-size: 27px;
            line-height: 1.3;
            letter-spacing: -0.04em;
        }

        .service-content p {
            min-height: 79px;
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 14px;
            line-height: 1.75;
        }

        .service-more {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-top: 18px;
            font-size: 13px;
            font-weight: 800;
        }

        .service-more::after {
            transition: transform 0.25s ease;
            content: "→";
        }

        .service-card:hover .service-more::after {
            transform: translateX(5px);
        }

        /* 이용 절차 */
        .process {
            overflow: hidden;
            background: var(--white);
        }

        .process-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .process-grid::before {
            position: absolute;
            z-index: 0;
            top: 52px;
            right: 12%;
            left: 12%;
            height: 2px;
            background:
                repeating-linear-gradient(
                    to right,
                    var(--line) 0,
                    var(--line) 9px,
                    transparent 9px,
                    transparent 17px
                );
            content: "";
        }

        .process-item {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .process-icon {
            display: grid;
            width: 104px;
            height: 104px;
            margin: 0 auto 24px;
            place-items: center;
            border: 10px solid var(--white);
            border-radius: 50%;
            color: var(--primary);
            background: var(--primary-light);
            box-shadow: 0 0 0 1px var(--line), 0 14px 25px rgba(53, 120, 103, 0.10);
            font-size: 36px;
            transition:
                color 0.25s ease,
                background 0.25s ease,
                transform 0.25s ease;
        }

        .process-item:hover .process-icon {
            color: var(--white);
            background: var(--primary);
            transform: translateY(-5px);
        }

        .process-step {
            display: inline-block;
            margin-bottom: 9px;
            color: var(--secondary);
            font-size: 12px;
            font-weight: 850;
            letter-spacing: 0.08em;
        }

        .process-item h3 {
            color: var(--navy);
            font-size: 20px;
        }

        .process-item p {
            margin-top: 9px;
            color: var(--gray);
            font-size: 14px;
            line-height: 1.7;
        }

        /* 상담 영역 */
        .consult {
            position: relative;
            overflow: hidden;
            padding: 95px 0;
            background:
                linear-gradient(120deg, rgba(35, 93, 80, 0.97), rgba(53, 120, 103, 0.91)),
                url("/img/main/consult_bg.jpg") center / cover no-repeat;
        }

        .consult::before {
            position: absolute;
            top: -120px;
            left: -100px;
            width: 380px;
            height: 380px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            content: "";
        }

        .consult-grid {
            position: relative;
            z-index: 2;
            display: grid;
            align-items: center;
            grid-template-columns: 1fr 450px;
            gap: 70px;
        }

        .consult-copy {
            color: var(--white);
        }

        .consult-copy .section-eyebrow {
            color: #ffe0a9;
        }

        .consult-copy .section-title {
            color: var(--white);
        }

        .consult-copy .section-desc {
            color: rgba(255, 255, 255, 0.78);
        }

        .consult-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 13px;
            margin-top: 32px;
        }

        .consult-points li {
            display: flex;
            align-items: center;
            gap: 9px;
            color: rgba(255, 255, 255, 0.91);
            font-size: 14px;
            font-weight: 650;
        }

        .consult-points li::before {
            display: grid;
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            place-items: center;
            border-radius: 50%;
            color: var(--primary-dark);
            background: #ffe0a9;
            font-size: 11px;
            font-weight: 900;
            content: "✓";
        }

        .consult-card {
            padding: 34px;
            border-radius: 28px;
            background: var(--white);
            box-shadow: 0 25px 60px rgba(18, 48, 40, 0.28);
        }

        .consult-card h3 {
            color: var(--navy);
            font-size: 25px;
            letter-spacing: -0.04em;
        }

        .consult-card > p {
            margin-top: 7px;
            color: var(--gray);
            font-size: 13px;
        }

        .consult-phone {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 24px 0;
            padding: 20px;
            border-radius: 18px;
            background: var(--primary-light);
        }

        .consult-phone-icon {
            display: grid;
            width: 53px;
            height: 53px;
            flex: 0 0 53px;
            place-items: center;
            border-radius: 17px;
            color: var(--white);
            background: var(--primary);
            font-size: 25px;
        }

        .consult-phone small {
            display: block;
            color: var(--gray);
            font-size: 12px;
            font-weight: 700;
        }

        .consult-phone strong {
            display: block;
            color: var(--primary-dark);
            font-size: 27px;
            line-height: 1.2;
            letter-spacing: -0.025em;
        }

        .consult-hours {
            display: flex;
            justify-content: space-between;
            padding: 12px 2px;
            border-bottom: 1px solid var(--line);
            color: var(--gray);
            font-size: 13px;
        }

        .consult-hours strong {
            color: var(--text);
        }

        .consult-card .btn {
            width: 100%;
            margin-top: 23px;
        }

        /* 장기요양 안내 */
        .insurance {
            background: var(--secondary-light);
        }

        .insurance-grid {
            display: grid;
            align-items: center;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 75px;
        }

        .insurance-info {
            position: relative;
            padding: 50px;
            overflow: hidden;
            border-radius: 34px;
            color: var(--white);
            background:
                linear-gradient(145deg, var(--primary), var(--primary-dark));
            box-shadow: var(--shadow);
        }

        .insurance-info::after {
            position: absolute;
            right: -70px;
            bottom: -95px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            content: "";
        }

        .insurance-info h3 {
            position: relative;
            z-index: 1;
            font-size: 30px;
            line-height: 1.4;
            letter-spacing: -0.04em;
        }

        .insurance-info p {
            position: relative;
            z-index: 1;
            margin-top: 17px;
            color: rgba(255, 255, 255, 0.77);
            font-size: 15px;
            line-height: 1.85;
        }

        .insurance-rate {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 30px;
        }

        .insurance-rate div {
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 17px;
            background: rgba(255, 255, 255, 0.10);
        }

        .insurance-rate small {
            display: block;
            color: rgba(255, 255, 255, 0.67);
            font-size: 12px;
        }

        .insurance-rate strong {
            display: block;
            margin-top: 3px;
            color: #ffdda4;
            font-size: 24px;
        }

        .insurance-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .insurance-card {
            padding: 28px;
            border: 1px solid rgba(217, 157, 85, 0.17);
            border-radius: 22px;
            background: var(--white);
            box-shadow: 0 12px 30px rgba(120, 91, 50, 0.07);
        }

        .insurance-card span {
            display: grid;
            width: 45px;
            height: 45px;
            place-items: center;
            margin-bottom: 17px;
            border-radius: 15px;
            color: #aa6e28;
            background: var(--secondary-light);
            font-size: 23px;
        }

        .insurance-card h4 {
            color: var(--navy);
            font-size: 18px;
        }

        .insurance-card p {
            margin-top: 8px;
            color: var(--gray);
            font-size: 13px;
            line-height: 1.7;
        }

        /* 커뮤니티 */
        .community {
            background: var(--white);
        }

        .community-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 30px;
        }

        .board-box,
        .recruit-box {
            padding: 36px;
            border: 1px solid var(--line);
            border-radius: 26px;
            background: var(--white);
        }

        .box-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .box-head h3 {
            color: var(--navy);
            font-size: 25px;
            letter-spacing: -0.04em;
        }

        .box-head a {
            color: var(--gray);
            font-size: 13px;
            font-weight: 700;
        }

        .box-head a:hover {
            color: var(--primary);
        }

        .notice-list li + li {
            border-top: 1px solid var(--line);
        }

        .notice-list a {
            display: grid;
            align-items: center;
            grid-template-columns: 76px 1fr 92px;
            gap: 18px;
            padding: 17px 0;
        }

        .notice-list .category {
            display: inline-flex;
            min-height: 30px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: var(--primary);
            background: var(--primary-light);
            font-size: 11px;
            font-weight: 800;
        }

        .notice-list .subject {
            overflow: hidden;
            color: #3d494d;
            font-size: 15px;
            font-weight: 650;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .notice-list .date {
            color: #98a09d;
            text-align: right;
            font-size: 12px;
        }

        .notice-list a:hover .subject {
            color: var(--primary);
        }

        .recruit-box {
            position: relative;
            overflow: hidden;
            border: 0;
            color: var(--white);
            background:
                linear-gradient(145deg, rgba(39, 59, 71, 0.97), rgba(53, 120, 103, 0.94)),
                url("/img/main/recruit_bg.jpg") center / cover no-repeat;
        }

        .recruit-box::after {
            position: absolute;
            right: -80px;
            bottom: -90px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            content: "";
        }

        .recruit-box .box-head {
            position: relative;
            z-index: 2;
        }

        .recruit-box .box-head h3,
        .recruit-box .box-head a {
            color: var(--white);
        }

        .recruit-box h4 {
            position: relative;
            z-index: 2;
            margin-top: 45px;
            font-size: 31px;
            line-height: 1.35;
            letter-spacing: -0.045em;
        }

        .recruit-box p {
            position: relative;
            z-index: 2;
            margin-top: 17px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            line-height: 1.8;
        }

        .recruit-box .btn {
            position: relative;
            z-index: 2;
            margin-top: 30px;
        }

        /* 하단 정보 */
        .info-strip {
            padding: 50px 0;
            border-top: 1px solid var(--line);
            background: var(--light-gray);
        }

        .info-strip-grid {
            display: grid;
            grid-template-columns: 1.25fr 1fr 1fr;
            gap: 45px;
        }

        .info-strip-item h3 {
            margin-bottom: 13px;
            color: var(--navy);
            font-size: 17px;
        }

        .info-strip-item p,
        .info-strip-item address {
            color: var(--gray);
            font-size: 13px;
            font-style: normal;
            line-height: 1.8;
        }

        .info-strip-phone {
            display: block;
            margin-top: 6px;
            color: var(--primary-dark);
            font-size: 27px;
            font-weight: 850;
        }
/* =========================================================
   푸터
========================================================= */

.site-footer {
    border-top: 0;
    color: #5f6870;
    background: #ffffff;
    font-size: 14px;
}

/* 기관 정보 */
.footer-main {
    padding: 44px 0 52px;
    background: #f5f6f7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
    padding-bottom: 26px;
    border-bottom: 1px solid #dde2e6;
}

.footer-links a {
    color: #4f5962;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links a strong {
    color: #1f5f9f;
    font-weight: 600;
}

.footer-links a:hover {
    color: #2f78c8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: end;
    gap: 60px;
    padding-top: 34px;
}

.footer-logo {
    color: #1f5f9f;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
    margin-top: 17px;
    color: #68717a;
    font-size: 15px;
    line-height: 1.8;
}

.footer-info span {
    position: relative;
}

.footer-info span + span::before {
    margin-right: 18px;
    color: #c4c9ce;
    content: "|";
}

.footer-info strong {
    margin-right: 6px;
    color: #47515a;
    font-weight: 500;
}

.copyright {
    margin-top: 18px;
    color: #9aa1a8;
    font-size: 13px;
    line-height: 1.7;
}

.footer-contact {
    padding-left: 38px;
    border-left: 1px solid #d9dee3;
}

.footer-contact small {
    display: block;
    color: #69737c;
    font-size: 15px;
    font-weight: 400;
}

.footer-contact > a {
    display: block;
    margin-top: 4px;
    color: #1f5f9f;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.footer-contact p {
    margin-top: 10px;
    color: #747d85;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 1080px) {
    .footer-partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-partner:nth-child(n + 4) {
        border-top: 1px solid #e3e7eb;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-contact {
        padding-top: 25px;
        padding-left: 0;
        border-top: 1px solid #d9dee3;
        border-left: 0;
    }
}

@media (max-width: 720px) {
    .footer-partners {
        padding: 22px 0;
    }

    .footer-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-partner {
        min-height: 72px;
        justify-content: flex-start;
        padding: 10px;
        border-top: 1px solid #e3e7eb;
    }

    .footer-partner:nth-child(-n + 2) {
        border-top: 0;
    }

    .footer-partner-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 23px;
    }

    .footer-partner small {
        display: none;
    }

    .footer-partner strong {
        font-size: 13px;
    }

    .footer-main {
        padding: 28px 0 36px;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 12px 18px;
    }

    .footer-grid {
        padding-top: 24px;
    }

    .footer-info {
        display: grid;
        gap: 4px;
    }

    .footer-info span + span::before {
        display: none;
    }

    .footer-contact > a {
        font-size: 26px;
    }
}

/* 우측 플로팅 */
        .floating-buttons {
            position: fixed;
            z-index: 900;
            right: 22px;
            bottom: 25px;
            display: grid;
            gap: 10px;
        }

        .floating-button {
            display: grid;
            width: 58px;
            height: 58px;
            place-items: center;
            border-radius: 50%;
            color: var(--white);
            background: var(--primary);
            box-shadow: 0 10px 25px rgba(36, 84, 71, 0.27);
            font-size: 22px;
            transition: transform 0.25s ease;
        }

        .floating-button:hover {
            transform: translateY(-4px);
        }

        .floating-button.call {
            background: var(--point);
        }

        .floating-button.top {
            visibility: hidden;
            background: var(--navy);
            opacity: 0;
            transition:
                opacity 0.25s ease,
                visibility 0.25s ease,
                transform 0.25s ease;
        }

        .floating-button.top.visible {
            visibility: visible;
            opacity: 1;
        }

        /* 모바일 메뉴 */
        .mobile-menu {
            position: fixed;
            z-index: 999;
            top: calc(30px + var(--header-height));
            right: 0;
            bottom: 0;
            width: min(390px, 88%);
            padding: 25px;
            overflow-y: auto;
            visibility: hidden;
            background: var(--white);
            box-shadow: -20px 20px 50px rgba(20, 48, 40, 0.14);
            opacity: 0;
            transform: translateX(100%);
            transition:
                transform 0.3s ease,
                opacity 0.3s ease,
                visibility 0.3s;
        }

        .mobile-menu.open {
            visibility: visible;
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu > ul > li {
            border-bottom: 1px solid var(--line);
        }

        .mobile-menu-title {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            padding: 17px 3px;
            color: var(--navy);
            background: transparent;
            font-size: 17px;
            font-weight: 800;
            text-align: left;
        }

        .mobile-menu-title::after {
            color: var(--primary);
            font-size: 19px;
            content: "+";
        }

        .mobile-menu-title.active::after {
            content: "−";
        }

        .mobile-submenu {
            display: none;
            padding: 5px 0 15px;
        }

        .mobile-submenu.open {
            display: block;
        }

        .mobile-submenu a {
            display: block;
            padding: 10px 15px;
            border-radius: 9px;
            color: var(--gray);
            background: var(--light-gray);
            font-size: 14px;
        }

        .mobile-submenu li + li {
            margin-top: 5px;
        }

       .mobile-contact {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 18px 20px;
    border-radius: 18px;
    color: var(--white);
    background: var(--primary);
    text-align: center;
}

.mobile-contact small {
    display: block;
    opacity: 0.75;
}

.mobile-contact strong {
    display: block;
    margin-top: 3px;
    font-size: 23px;
    line-height: 1.3;
}

        .mobile-menu-dim {
            position: fixed;
            z-index: 998;
            inset: calc(30px + var(--header-height)) 0 0;
            visibility: hidden;
            background: rgba(16, 36, 56, 0.48);
            opacity: 0;
            transition:
                opacity 0.3s ease,
                visibility 0.3s;
        }

        .mobile-menu-dim.open {
            visibility: visible;
            opacity: 1;
        }

        @media (max-width: 1180px) {
            .gnb > li > a {
                padding: 0 12px;
                font-size: 14px;
            }

            .header-call {
                padding: 10px 13px;
            }

            .quick-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 980px) {
            :root {
                --header-height: 72px;
            }

            .topbar-links,
            .gnb,
            .header-call {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .hero,
            .hero .inner {
                min-height: 670px;
            }

            .hero-content {
                padding-bottom: 150px;
            }

            .hero-info-item {
                padding: 20px;
            }

            .about-grid,
            .consult-grid,
            .insurance-grid,
            .community-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                gap: 50px;
            }

            .about-image {
                max-width: 680px;
            }

            .consult-grid {
                gap: 45px;
            }

            .consult-card {
                max-width: 560px;
            }

            .insurance-grid {
                gap: 40px;
            }

            .info-strip-grid {
                grid-template-columns: 1fr 1fr;
            }

            .info-strip-item:first-child {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 720px) {
            .inner {
                width: min(100% - 30px, 1280px);
            }

            .section {
                padding: 78px 0;
            }

            .section-head {
                margin-bottom: 36px;
            }

            .section-head.center {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 31px;
            }

            .section-desc {
                font-size: 15px;
            }

            .topbar .inner {
                justify-content: center;
            }

            .topbar-message {
                font-size: 11px;
                text-align: center;
            }

            .logo-mark {
                width: 42px;
                height: 42px;
            }



            .hero {
                min-height: 720px;
                background:
                    linear-gradient(
                        90deg,
                        rgba(25, 65, 55, 0.91),
                        rgba(34, 86, 72, 0.71)
                    ),
                    url("/img/main/main_visual01.jpg") 65% center / cover no-repeat,
                    linear-gradient(135deg, #2b6d5c, #88b5a1);
            }

            .hero .inner {
                min-height: 720px;
                align-items: flex-start;
            }

            .hero-content {
                padding: 82px 0 245px;
            }

            .hero h2 {
                font-size: 42px;
            }

            .hero-desc {
                font-size: 16px;
            }

            .hero-buttons {
                display: grid;
                grid-template-columns: 1fr;
            }

            .hero-buttons .btn {
                width: 100%;
            }

         /* 모바일 메인 하단 기관정보 */
.hero-info {
    right: 15px;
    bottom: 0;
    left: 15px;
}

.hero-info .inner {
    display: grid;
    width: 100%;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.hero-info .inner {
    min-height: 0;
}

.hero-info-item {
    display: flex;
    min-height: 68px;
    height: auto;
    align-items: center;
    gap: 13px;
    padding: 12px 18px;
}

.hero-info-item + .hero-info-item {
    border-top: 1px solid var(--line);
    border-left: 0;
}

.hero-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    font-size: 17px;
}

.hero-info-icon i {
    font-size: 17px;
}

.hero-info-item small {
    margin-bottom: 1px;
    font-size: 10px;
}

.hero-info-item strong {
    font-size: 14px;
    line-height: 1.35;
}

         .quick-menu {
    padding: 24px 0 10px;
}

.quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.quick-item {
    min-height: 112px;
    padding: 14px 7px;
    border-radius: 15px;
}

.quick-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    border-radius: 13px;
}

.quick-icon i {
    font-size: 17px !important;
}

.quick-item strong {
    font-size: 13px;
    line-height: 1.35;
}

.quick-item > span:last-child {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
}

            .about-image {
                min-height: 410px;
            }

            .about-image-main {
                width: 87%;
                height: 370px;
                border-radius: 28px 28px 28px 8px;
            }

            .about-image-sub {
                width: 50%;
                height: 175px;
                border-width: 7px;
            }

            .about-badge {
                top: 20px;
                width: 105px;
                height: 105px;
                border-width: 6px;
            }

            .about-badge strong {
                font-size: 19px;
            }

            .about-stat {
                grid-template-columns: 1fr;
            }

            .about-stat > div + div {
                border-top: 1px solid var(--line);
                border-left: 0;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-height: 400px;
            }

            .process-grid {
                grid-template-columns: 1fr 1fr;
                row-gap: 45px;
            }

            .process-grid::before {
                display: none;
            }

            .process-icon {
                width: 87px;
                height: 87px;
                border-width: 7px;
                font-size: 29px;
            }

            .process-item h3 {
                font-size: 17px;
            }

            .process-item p {
                font-size: 12px;
            }

            .consult {
                padding: 75px 0;
            }

            .consult-points {
                grid-template-columns: 1fr;
            }

            .consult-card {
                padding: 25px;
            }

            .consult-phone strong {
                font-size: 23px;
            }

            .insurance-info {
                padding: 34px 27px;
            }

            .insurance-info h3 {
                font-size: 25px;
            }

            .insurance-cards {
                grid-template-columns: 1fr;
            }

            .board-box,
            .recruit-box {
                padding: 25px;
            }

            .notice-list a {
                grid-template-columns: 62px 1fr;
                gap: 11px;
            }

            .notice-list .date {
                display: none;
            }

            .recruit-box h4 {
                margin-top: 32px;
                font-size: 26px;
            }

            .info-strip-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .info-strip-item:first-child {
                grid-column: auto;
            }

            .footer-grid {
                display: block;
            }

            .footer-links {
                justify-content: flex-start;
                margin-top: 25px;
            }

            .floating-buttons {
                right: 13px;
                bottom: 15px;
            }

            .floating-button {
                width: 50px;
                height: 50px;
                font-size: 19px;
            }
        }

        @media (max-width: 420px) {
            .hero h2 {
                font-size: 36px;
            }

            .hero-label {
                font-size: 12px;
            }

            .quick-item span {
                display: none;
            }

            .process-grid {
                gap: 32px 12px;
            }

            .insurance-rate {
                grid-template-columns: 1fr;
            }
        }

/* =========================================================
   메인 주요 바로가기 아이콘 강제 적용
========================================================= */

.quick-icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 17px;
    color: var(--primary);
    background: var(--primary-light);
    font-size: 0;
}

/* 기존 문자 아이콘이나 가상요소 제거 */
.quick-icon::before,
.quick-icon::after {
    display: none !important;
    content: none !important;
}

/* Font Awesome 아이콘 표시 */
.quick-icon i {
    display: block !important;
    color: var(--primary);
    font-family: "Font Awesome 6 Free" !important;
    font-size: 21px !important;
    font-style: normal;
    font-weight: 900 !important;
    line-height: 1;
}



@media (max-width: 1280px) {
    .header-inner {
        gap: 20px;
    }

    .gnb {
        gap: 0;
    }

    .gnb > li > a {
        padding: 0 13px;
        font-size: 18px;
        font-weight: 400;
    }

    .gnb > li > a::after {
        right: 13px;
        left: 13px;
    }

    .header-call {
        min-width: 188px;
        padding: 0 19px;
    }

    .site-logo-full {
        height: 62px;
    }
}

@media (max-width: 1080px) {
    .main-navigation,
    .header-call {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header {
        height: 82px;
    }

    .site-logo-full {
        height: 58px;
    }
}

@media (max-width: 720px) {
    .topbar {
        height: 30px;
    }

    .topbar .inner {
        justify-content: center;
    }

    .topbar-message {
        font-size: 10px;
        text-align: center;
    }

    .site-header {
        height: 74px;
    }

    .site-logo-full {
        height: 50px;
    }

    .header-inner {
        gap: 10px;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
        border-radius: 4px;
    }
}


.site-logo{
    display:flex;
    align-items:center;
}

.site-logo-full{
    display:block;
    height:68px;
    width:auto;
}

/* =========================================================
   헤더 무료상담 버튼 글자 확대
========================================================= */

.header-call {
    min-width: 245px;
    height: 58px;
    padding: 0 28px;
    gap: 9px;
}

.header-call > i {
    font-size: 19px;
}

.header-call small {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.header-call strong {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}



.copyright .copyright_secret {
    color: inherit;
    font: inherit;
    text-decoration: none;
    cursor: default;
}

.copyright .copyright_secret:hover,
.copyright .copyright_secret:focus,
.copyright .copyright_secret:active,
.copyright .copyright_secret:visited {
    color: inherit;
    text-decoration: none;
}