:root {
            --primary-blue: #0b57d0;
            --primary-light: #f0f5ff;
            --text-dark: #111111;
            --text-sub: #555555;
            --border-color: #e2e8f0;
            --bg-light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            color: var(--text-dark);
            background-color: #fff;
            line-height: 1.5;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* 공통 컨테이너 */
        .container {
            max-width: 1360px;
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ==========================================
           1. ABOUT US 섹션 (병원 소개)
           ========================================== */
        .about-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-box {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .about-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image-box:hover img {
            transform: scale(1.03);
        }

        .about-text-box .section-tag {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: block;
        }

        .about-text-box h2 {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .about-text-box h2 span {
            color: var(--primary-blue);
        }

        .about-text-box p.desc {
            font-size: 16px;
            color: var(--text-sub);
            margin-bottom: 35px;
            line-height: 1.6;
        }

        /* 4개 통계 그리드 */
        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
        }

        .stat-item .stat-icon {
            font-size: 22px;
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .stat-item h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .stat-item p {
            font-size: 13px;
            color: var(--text-sub);
        }

        /* 버튼 스타일 */
        .btn-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: #fff;
        }

        .btn-more:hover {
            background-color: var(--primary-blue);
            color: #fff;
            border-color: var(--primary-blue);
            transform: translateX(5px);
        }

        /* ==========================================
           2. 굿헬스병원의 특별함 섹션
           ========================================== */
        .features-section {
            padding: 100px 0;
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .section-tag {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .feature-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-blue);
            box-shadow: 0 12px 30px rgba(11, 87, 208, 0.1);
        }

        .feature-card .card-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 28px;
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }

        .feature-card:hover .card-icon {
            background: var(--primary-blue);
            color: #fff;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.5;
        }

        /* ==========================================
           3. 분야별 전문 진료 섹션
           ========================================== */
        .departments-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .dept-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .dept-item {
            text-align: center;
            cursor: pointer;
            padding: 20px 10px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .dept-item:hover {
            background-color: var(--primary-light);
        }

        .dept-circle {
            width: 100px;
            height: 100px;
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 34px;
            color: var(--primary-blue);
            background: #fff;
            transition: all 0.3s ease;
        }

        

        .dept-item:hover .dept-circle {
            border-color: var(--primary-blue);
            background: var(--primary-blue);
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(11, 87, 208, 0.2);
        }

        .dept-item h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .dept-item p {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.4;
        }

        .dept-btn-wrap {
            text-align: center;
        }

        /* ==========================================
           반응형 미디어쿼리
           ========================================== */
        @media (max-width: 1200px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .dept-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 992px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-image-box { height: 350px; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .about-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .features-grid { grid-template-columns: 1fr; }
            .dept-grid { grid-template-columns: repeat(2, 1fr); }
            .about-text-box h2 { font-size: 28px; }
            .section-header h2 { font-size: 28px; }
        }




/* ==========================================
           첨단 의료 장비 섹션
           ========================================== */
        .equipment-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 60px;
            align-items: center;
        }

        /* 좌측 텍스트 및 리스트 영역 */
        .equipment-text-box h2 {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .equipment-text-box h2 span {
            color: var(--primary-blue);
            display: block;
        }

        .equipment-text-box p.desc {
            font-size: 15px;
            color: var(--text-sub);
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .equipment-list {
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .equipment-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .equipment-list li i {
            color: var(--primary-blue);
            font-size: 15px;
        }

        /* 상세보기 버튼 */
        .btn-equipment {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: #fff;
        }

        .btn-equipment:hover {
            background-color: var(--primary-blue);
            color: #fff;
            border-color: var(--primary-blue);
            transform: translateX(5px);
        }

        /* 우측 이미지 슬라이더 영역 */
        .equipment-slider-wrap {
            position: relative;
            width: 100%;
            height: 480px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .eq-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .eq-slide.active {
            opacity: 1;
        }

        .eq-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 슬라이드 좌우 화살표 버튼 */
        .eq-prev, .eq-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--text-dark);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .eq-prev:hover, .eq-next:hover {
            background: var(--primary-blue);
            color: #fff;
        }

        .eq-prev { left: 20px; }
        .eq-next { right: 20px; }

        /* 하단 인디케이터 닷 */
        .eq-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .eq-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .eq-dot.active {
            background: #fff;
            width: 20px;
            border-radius: 4px;
        }

        /* ==========================================
           반응형 미디어쿼리
           ========================================== */
        @media (max-width: 992px) {
            .equipment-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .equipment-slider-wrap {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .equipment-text-box h2 { font-size: 28px; }
            .equipment-slider-wrap {
                height: 280px;
            }
        }





        /* =========================================================
   의료진 소개
========================================================= */

    
.doctor-section {
    position: relative;
    width: 100%;
    padding: 90px 0 85px;
    background: #fff;
    overflow: hidden;
}

.doctor-inner {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
    
}


/* 타이틀 */

.doctor-heading {
    text-align: center;
    margin-bottom: 38px;
}

.doctor-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #9ba3ad;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.doctor-heading h2 {
    margin: 0;
    color: #202833;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.055em;
}


/* 슬라이드 */

.doctor-slider-wrap {
    position: relative;
    padding: 0 42px;
}

.doctor-slider {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.doctor-slider {
    padding-left:14px;
    border:0px solid red;
}

.doctor-slider.is-dragging {
    cursor: grabbing;
}

.doctor-track {
    display: flex;
    gap: 16px;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}


/* 카드 */

.doctor-card {
    position: relative;
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
    height: 265px;
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(27, 47, 70, .045);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
    border-color: #dce4ec;
    box-shadow: 0 14px 30px rgba(27, 47, 70, .09);
}


/* 의사 사진 */

.doctor-photo {
    position: relative;
    height: 108px;
    overflow: hidden;
    text-align: center;
}

.doctor-photo::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 130px;
    height: 130px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.75);
}

.doctor-photo img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
}


/* 정보 */

.doctor-info {
    position: relative;
    height: calc(100% - 108px);
    padding: 13px 15px 12px;
    background: #fff;
}

.doctor-name {
    color: #202833;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.doctor-name span {
    margin-left: 4px;
    color: #8b949e;
    font-size: 10px;
    font-weight: 500;
}

.doctor-department {
    margin-top: 3px;
    color: #347ac5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.doctor-info ul {
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
}

.doctor-info li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 4px;
    color: #7c858f;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: -0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.doctor-info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #4d91d4;
}


/* 좌우 버튼 */

/* 좌우 버튼 */
.doctor-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 42px;
    height: 42px;

    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;

    background: #0e5f9d;

    box-shadow:
        0 0 0 1px rgba(14, 95, 157, .2),
        0 6px 18px rgba(14, 95, 157, .3);

    cursor: pointer;
    transform: translateY(-50%);

    transition: all .25s ease;
}

/* 위치 */
.doctor-prev {
    left: -5px;
}

.doctor-next {
    right: -5px;
}


/* =========================
   흰색 화살표
========================= */

.doctor-arrow::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border-top: 3px solid #fff;
    border-right: 3px solid #fff;

    box-sizing: border-box;
}


/* 왼쪽 화살표 */
.doctor-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}


/* 오른쪽 화살표 */
.doctor-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}


/* Hover */
.doctor-arrow:hover {
    background: #0875bb;

    box-shadow:
        0 0 0 2px rgba(14, 95, 157, .12),
        0 8px 24px rgba(14, 95, 157, .38);

    transform: translateY(-50%) scale(1.1);
}


/* 클릭 */
.doctor-arrow:active {
    transform: translateY(-50%) scale(.95);
}


/* 비활성 */
.doctor-arrow:disabled {
    opacity: .35;
    cursor: default;
    transform: translateY(-50%);
}
.doctor-arrow:hover {
    box-shadow: 0 6px 18px rgba(20, 40, 60, .15);
}

.doctor-prev {
    left: 0;
}

.doctor-next {
    right: 0;
}

.doctor-arrow span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid #4d91d4;
    border-right: 1px solid #4d91d4;
}

.doctor-prev span {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.doctor-next span {
    transform: translate(-65%, -50%) rotate(45deg);
}

.doctor-arrow:disabled {
    opacity: .3;
    cursor: default;
}


/* 전체보기 */

.doctor-more {
    margin-top: 28px;
    text-align: center;
}

.doctor-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 112px;
    height: 35px;
    padding: 0 16px;
    border: 1px solid #80aee0;
    border-radius: 5px;
    color: #4a83c1;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.doctor-more a:hover {
    color: #fff;
    background: #4d91d4;
    border-color: #4d91d4;
}

.more-arrow {
    position: relative;
    width: 13px;
    height: 1px;
    background: currentColor;
}

.more-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}


/* =========================================================
   태블릿
========================================================= */

@media (max-width: 1024px) {

    .doctor-section {
        padding: 75px 0;
    }

    .doctor-card {
        flex-basis: calc((100% - 32px) / 3);
    }

}


/* =========================================================
   모바일
========================================================= */

@media (max-width: 767px) {

    .doctor-section {
        padding: 60px 0 65px;
    }

    .doctor-inner {
        width: calc(100% - 30px);
    }

    .doctor-heading {
        margin-bottom: 28px;
    }

    .doctor-heading h2 {
        font-size: 21px;
    }

    .doctor-slider-wrap {
        padding: 0 28px;
    }
    .doctor-slider {
        padding-left:28px !important;
    }
    .doctor-track {
        gap: 12px;
    }

    .doctor-card {
        flex-basis: calc((100% - 12px) / 2);
        height: 250px;
    }

    .doctor-photo {
        height: 105px;
    }

    .doctor-photo img {
    width: 135%;
    max-width: none;
    height: 135px;
    margin-left: -17.5%;
    object-fit: contain;
    object-position: center bottom;
}



    .doctor-info {
        height: calc(100% - 105px);
        padding: 12px;
    }

    .doctor-name {
        font-size: 14px;
    }

    .doctor-info li {
        font-size: 8.5px;
    }

    .doctor-arrow {
        width: 29px;
        height: 29px;
    }

}


/* =========================================================
   작은 모바일
========================================================= */

@media (max-width: 480px) {

    .doctor-section {
        padding: 50px 0 55px;
    }

    .doctor-slider-wrap {
        padding: 0 24px;
    }

    .doctor-card {
        flex-basis: 100%;
        height: 255px;
    }

    .doctor-photo {
        height: 110px;
    }

    .doctor-info {
        padding: 14px;
    }

}








/* ==========================================
           환자 후기 섹션 스타일 (가로 나열)
           ========================================== */
        .review-section {
            padding: 100px 0;
            background-color: var(--bg-section);
        }

        /* 상단 타이틀 영역 (좌측 정렬) */
        .review-header {
            margin-bottom: 50px;
        }

        .review-header .review-tag {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-blue);
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }

        .review-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -1px;
            line-height: 1.3;
        }

        /* 카드 가로 배치 그리드 */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* PC에서 4개 가로 나열 */
            gap: 24px;
        }

        /* 후기 카드 디자인 */
        .review-card {
            background: #fff;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 280px; /* 카드 높이 통일 */
        }

        .review-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            box-shadow: 0 12px 30px rgba(11, 87, 208, 0.06);
        }

        /* 인용구 및 본문 텍스트 */
        .review-content {
            position: relative;
        }

        .review-content .fa-quote-left {
            font-size: 24px;
            color: var(--primary-blue);
            opacity: 0.8;
            margin-bottom: 15px;
            display: block;
        }

        .review-content p {
            font-size: 16px;
            color: #333333;
            line-height: 1.6;
            letter-spacing: -0.5px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 작성자 프로필 정보 */
        .review-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .profile-img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #e2e8f0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-info .name-age {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .profile-info .treatment {
            font-size: 13px;
            color: var(--text-sub);
        }

        /* ==========================================
           반응형 미디어쿼리 (태블릿 및 모바일 대응)
           ========================================== */
        @media (max-width: 1200px) {
            .review-grid {
                grid-template-columns: repeat(2, 1fr); /* 태블릿에서는 2개씩 2줄 */
            }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .review-header h2 { font-size: 26px; }
            .review-grid {
                grid-template-columns: 1fr; /* 모바일에서는 1개씩 세로 나열 */
            }
            .review-card { height: auto; min-height: 250px; }

            
        }











        /* 빠른 상담 및 예약 섹션 스타일 */
        .reservation-section {
            background-color: #0b3aa8; /* 진한 파란색 배경 */
            color: #ffffff;
            padding-top:40px;
            padding-bottom:40px;
            position: relative;
            overflow: hidden;
            width: 100%;
            background-image: url('../img/rev.png');
        }

        .reservation-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        /* 1. 왼쪽 텍스트 영역 */
        .reservation-text-box {
            flex: 1;
            z-index: 2;
        }

        .reservation-text-box .sub-title {
            color: #f3c653; /* 노란빛 포인트 텍스트 */
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .reservation-text-box .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .reservation-text-box .desc {
            font-size: 1rem;
            opacity: 0.85;
            line-height: 1.5;
        }

        /* 2. 중앙 카드 영역 (3개) */
        .reservation-cards-box {
            display: flex;
            gap: 20px;
            flex: 1.5;
            justify-content: center;
            z-index: 2;
        }

        .r-card {
            background-color: #ffffff;
            color: #333333;
            width: 150px;
            height: 180px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .r-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .r-card .icon-wrap {
            font-size: 2rem;
            color: #0b3aa8;
            margin-bottom: 15px;
        }

        .r-card .card-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #111;
        }

        .r-card .card-sub {
            font-size: 1rem;
            color: #666;
            line-height: 1.2;
        }

        /* 3. 오른쪽 스마트폰 목업 영역 */
        .reservation-phone-box {
            flex: 0.8;
            display: flex;
            justify-content: flex-end;
            position: relative;
            z-index: 2;
        }

        .phone-mockup {
            width: 220px;
            height: 440px;
            background: #111;
            border-radius: 35px;
            border: 8px solid #222;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #fff;
        }

        /* 스마트폰 상단 노치 */
        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 18px;
            background: #222;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            z-index: 10;
        }

        .phone-screen-content {
            width: 100%;
            height: 100%;
            padding: 30px 15px 15px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            text-align: center;
        }

        .phone-screen-content i {
            font-size: 2.5rem;
            color: #0b3aa8;
            margin-bottom: 10px;
        }

        .phone-screen-content h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .phone-screen-content p {
            font-size: 0.75rem;
            color: #555;
        }

        /* 반응형 미디어 쿼리 (태블릿 및 모바일 최적화) */
        @keyframes floatPhone {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        .phone-mockup {
            animation: floatPhone 4s ease-in-out infinite;
        }

        @media screen and (max-width: 1024px) {
            .reservation-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .reservation-text-box {
                align-items: center;
            }

            .reservation-cards-box {
                width: 100%;
                justify-content: center;
            }

            .reservation-phone-box {
                display: none; /* 화면이 작아지면 모바일 목업은 숨김 처리 (선택사항) */
            }
        }

        @media screen and (max-width: 600px) {
            .reservation-section {
                padding: 50px 15px;
            }

            .reservation-text-box .main-title {
                font-size: 1.8rem;
            }

            .reservation-cards-box {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .r-card {
                width: 100%;
                max-width: 280px;
                height: 100px;
                flex-direction: row;
                justify-content: flex-start;
                padding: 0 20px;
                text-align: left;
            }

            .r-card .icon-wrap {
                margin-bottom: 0;
                margin-right: 20px;
                font-size: 1.8rem;
            }
        }










        /* 찾아오시는 길 섹션 전체 스타일 */
        .location-section {
            background-color: #f4f8fb; /* 연한 하늘색/회색빛 배경 */
            color: #333333;
            padding: 40px 20px;
            width: 100%;
        }

        .location-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        /* 1. 왼쪽 텍스트 및 정보 영역 */
        .location-info-box {
            flex: 1;
            z-index: 2;
        }

        .location-info-box .sub-title {
            color: #555555;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .location-info-box .main-title {
            font-size: 2.3rem;
            font-weight: 700;
            color: #0b3aa8; /* 포인트 블루 컬러 */
            line-height: 1.3;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .location-info-box .address-info {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #444;
            margin-bottom: 25px;
        }

        .location-info-box .address-info strong {
            display: block;
            font-weight: 600;
            color: #111;
            margin-top: 4px;
        }

        /* 지하철 및 주차 안내 리스트 */
        .location-tips {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tip-item {
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: #555;
        }

        .tip-item i {
            width: 24px;
            height: 24px;
            background-color: #e2ecf9;
            color: #0b3aa8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            margin-right: 10px;
        }

        /* 2. 오른쪽 지도 영역 */
        .location-map-box {
            flex: 1.4;
            width: 100%;
        }

        .map-card {
            width: 100%;
            height: 360px;
            background-color: #e5e9f0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            border: 1px solid #dcdfe6;
        }

        /* 실제 지도가 들어갈 공간 (iframe 또는 맵 API 활용) */
        .map-card iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* 반응형 미디어 쿼리 */
        @media screen and (max-width: 1024px) {
            .location-container {
                flex-direction: column;
                gap: 40px;
            }

            .location-info-box {
                text-align: left;
                width: 100%;
            }

            .location-map-box {
                width: 100%;
            }
        }

        @media screen and (max-width: 600px) {
            .location-section {
                padding: 50px 15px;
            }

            .location-info-box .main-title {
                font-size: 1.8rem;
            }

            .map-card {
                height: 280px;
            }
        }


