﻿@charset "utf-8";

/* ==================== 기본 리셋 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-all;
}

/* ==================== 반응형 폰트 시스템 ==================== */
:root {
    /* 기본 폰트 스케일 */
    --font-scale: 1.0;

    /* 기본 반응형 폰트 크기 (clamp 적용) */
    --font-size-12: clamp(10px, 2vw, 12px);
    --font-size-14: clamp(12px, 2.5vw, 14px);
    --font-size-15: clamp(13px, 2.8vw, 15px);
    --font-size-18: clamp(16px, 3.2vw, 18px);
    --font-size-20: clamp(18px, 3.5vw, 20px);
    --font-size-23: clamp(20px, 4vw, 23px);
    --font-size-26: clamp(22px, 4.5vw, 26px);
    --font-size-28: clamp(24px, 5vw, 28px);
    --font-size-32: clamp(28px, 5.5vw, 32px);
    --font-size-35: clamp(30px, 6vw, 35px);
    --font-size-40: clamp(34px, 7vw, 40px);
    --font-size-48: clamp(42px, 7.5vw, 48px);
    --font-size-52: clamp(44px, 9vw, 52px);
    --font-size-57: clamp(48px, 10vw, 57px);
    --font-size-70: clamp(58px, 12vw, 70px);
    --font-size-165: clamp(100px, 18vw, 165px);

    /* 기존 반응형 폰트 크기 (호환성 유지) */
    --font-size-xs: clamp(12px, 2.5vw, 14px);
    --font-size-sm: clamp(14px, 3vw, 16px);
    --font-size-md: clamp(16px, 3.5vw, 18px);
    --font-size-lg: clamp(18px, 4vw, 22px);
    --font-size-xl: clamp(20px, 4.5vw, 26px);
    --font-size-2xl: clamp(24px, 5vw, 32px);
    --font-size-3xl: clamp(28px, 6vw, 40px);
    --font-size-4xl: clamp(32px, 7vw, 48px);
    --font-size-5xl: clamp(36px, 8vw, 56px);
    --font-size-6xl: clamp(48px, 10vw, 72px);

    /* 색상 */
    --primary-color: #1B45A8;
    --secondary-color: #666;
    --accent-color: #60d1b5;
    --text-color: #1c1c1c;
    --light-text: #888;
    --bg-light: #f8f9fa;

    /* 통일된 border 색상 */
    --border-color: #CCD2DD;

    /* Landing Page Variables (Converted from rem to px assuming 1rem=10px base or similar design intent) */
    --landContPd: 200px;
    --landContPd2: 150px;
    --landSubTit: 52px;
    --landTit1: 32px;
    --landTit2: 28px;
    --landTit3: 24px;
    --landTxt1: 20px;
    --landTxt2: 14px;
}

/* 폰트 크기 단계별 적용 */
body.font-scale-0 {
    --font-scale: 0.8;
}

body.font-scale-1 {
    --font-scale: 0.9;
}

body.font-scale-2 {
    --font-scale: 1.0;
}

body.font-scale-3 {
    --font-scale: 1.1;
}

body.font-scale-4 {
    --font-scale: 1.25;
}

/* 기본 스타일 */
body {
    font-family: 'Pretendard Variable', Pretendard Variable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: calc(var(--font-size-md) * var(--font-scale));
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
}

/* 타이포그래피 */
h1,
.h1,
.heading-1 {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2,
.h2,
.heading-2 {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.875rem;
}

h3,
.h3,
.heading-3 {
    font-size: calc(var(--font-size-3xl) * var(--font-scale)) !important;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4,
.h4,
.heading-4 {
    font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.625rem;
}

h5,
.h5,
.heading-5 {
    font-size: calc(var(--font-size-xl) * var(--font-scale)) !important;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6,
.h6,
.heading-6 {
    font-size: calc(var(--font-size-lg) * var(--font-scale)) !important;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: calc(var(--font-size-md) * var(--font-scale)) !important;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 450;
}

ul,
ol {
    font-size: calc(var(--font-size-md) * var(--font-scale)) !important;
    line-height: 1.6;
}

li {
    font-size: calc(var(--font-size-md) * var(--font-scale)) !important;
}

blockquote {
    font-size: calc(var(--font-size-lg) * var(--font-scale)) !important;
    line-height: 1.6;
    font-style: italic;
    margin: 2rem 0;
    padding: 1rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
}

table {
    font-size: calc(var(--font-size-sm) * var(--font-scale)) !important;
}

th,
td {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    line-height: 1.5;
}

button,
.btn {
    font-size: calc(var(--font-size-md) * var(--font-scale)) !important;
    line-height: 1.4;
}

input,
textarea,
select {
    font-family: 'Pretendard Variable', Pretendard Variable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: calc(var(--font-size-md) * var(--font-scale)) !important;
    line-height: 1.4;
}

label {
    font-size: calc(var(--font-size-md) * var(--font-scale)) !important;
    line-height: 1.4;
}

small,
.small,
.caption {
    font-size: calc(var(--font-size-xs) * var(--font-scale)) !important;
    line-height: 1.4;
    color: var(--light-text);
}

.large,
.large-text {
    font-size: calc(var(--font-size-lg) * var(--font-scale)) !important;
    line-height: 1.6;
}

/* ==================== 헤더 스타일 ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.header_in {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.mo_top {
    display: none;
}

.depth1 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5rem;
    transition: gap 0.3s ease;
}

.nav:hover .depth1 {
    gap: 7rem;
}

.depth1>li {
    position: relative;
}

.depth1>li>a {
    display: block;
    padding: 1rem 0;
    color: #1c1c1c;
    font-size: calc(18px * var(--font-scale));
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.depth1>li>a:hover,
.depth1>li.active>a {
    opacity: 0.8;
}

/* 서브메뉴 */
.nav::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #fff;
    border-bottom: 0.5px solid #CCD2DD;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    overflow: hidden;
}

.nav:hover::before {
    height: 300px;
    opacity: 1;
    visibility: visible;
}

.depth2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    list-style: none;
    margin: 0;
    padding-bottom: 1rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav:hover .depth2 {
    opacity: 1;
    visibility: visible;
}

.depth2 li {
    margin: 0;
}

.depth2 a {
    display: block;
    padding: 0.55rem 1.5rem;
    color: #1c1c1c8f;
    font-weight: 500;
    font-size: calc(16px * var(--font-scale));
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.depth2 a:hover {
    color: #1c1c1c;
}

/* 우측 유틸리티 */
.right_wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.zoom_font {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.zoom_font .btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.zoom_font .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.zoom_font .btn svg {
    fill: #1c1c1c;
    width: 16px;
    height: 16px;
}

.zoom_font .txt {
    color: #1c1c1c;
    font-size: calc(14px * var(--font-scale));
    font-weight: 600;
    margin: 0 0.25rem;
}

.right_wrap .login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.right_wrap .login:hover {
    background: rgba(255, 255, 255, 0.2);
}

.right_wrap .login .tool {
    font-size: 14px;
    font-weight: 500;
}

.right_wrap .login svg {
    width: 20px;
    height: 20px;
    fill: #1c1c1c;
}

.len {
    position: relative;
    display: flex;
    align-items: center;
    color: #1c1c1c;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.len:hover {
    background: rgba(255, 255, 255, 0.2);
}

.len svg {
    width: 20px;
    height: 20px;
    fill: #1c1c1c;
}

.btn_nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0.5rem 0;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.len:hover .btn_nav {
    opacity: 1;
    visibility: visible;
}

.btn_nav li {
    padding: 0.3rem 0;
    color: #333;
    cursor: pointer;
    font-size: 14px !important;
    transition: all 0.2s ease;
    text-align: center;
}

.btn_nav li:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.sch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.sch:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sch svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.ham {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.ham:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ham svg {
    width: 20px;
    height: 20px;
    fill: #1c1c1c;
}

/* 검색 모달 */
#headerSearch {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

#headerSearch.active {
    display: flex;
}

.all_sch {
    position: relative;
    width: 90%;
    max-width: 600px;
}

.sch_box {
    position: relative;
    width: 100%;
}

.sch_box input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.sch_box .ico button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sch_box .ico svg {
    width: 20px;
    height: 20px;
    fill: #666;
}

.all_sch .close_btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.all_sch .close_btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.gnb_bg {
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.05);
    transition: height 0.3s ease;
    pointer-events: none;
}

/* ==================== 레이아웃 & 유틸리티 ==================== */
.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-content {
    margin-top: 100px;
    padding: 2rem 0;
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
    border-bottom: none;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.debug-info {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    font-family: monospace;
    z-index: 9999;
    display: none;
}

.debug-info.show {
    display: block;
}

/* 알림 모달 */
.font-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.font-alert-modal.show {
    opacity: 1;
    visibility: visible;
}

.font-alert-modal .modal-content {
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 90vw;
    min-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.font-alert-modal.show .modal-content {
    transform: scale(1);
}

.font-alert-modal .modal-message {
    font-size: calc(var(--font-size-lg) * var(--font-scale));
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.font-alert-modal .modal-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 65px;
    font-size: calc(var(--font-size-md) * var(--font-scale));
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.font-alert-modal .modal-button:hover {
    background: #006b5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 129, 108, 0.3);
}

.font-alert-modal .modal-button:active {
    transform: translateY(0);
}

/* ==================== 브레드크럼 및 헤더 스타일 (sample.html에서 이동) ==================== */

/* Breadcrumb Animation Keyframes */
@keyframes fadeUpSmall {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 메인 컨테이너 */
.page-header-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Apply Animation to Items & Separators */
.breadcrumbs>* {
    opacity: 0;
    animation: fadeUpSmall 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.breadcrumbs>*:nth-child(1) {
    animation-delay: 0.1s;
}

/* Home */
.breadcrumbs>*:nth-child(2) {
    animation-delay: 0.2s;
}

/* Sep */
.breadcrumbs>*:nth-child(3) {
    animation-delay: 0.3s;
}

/* Depth1 */
.breadcrumbs>*:nth-child(4) {
    animation-delay: 0.4s;
}

/* Sep */
.breadcrumbs>*:nth-child(5) {
    animation-delay: 0.5s;
}

/* Depth2 */

.breadcrumbs-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
    font-size: calc(var(--font-size-15) * var(--font-scale));
    color: #666;
}

.breadcrumbs-item:hover,
.breadcrumbs-item.active,
.breadcrumbs-item.active-page {
    color: #1c1c1c;
    font-weight: 700;
}

.icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

.icon-home {
    width: 20px !important;
    height: 20px !important;
    color: #1c1c1c;
    margin-bottom: 2px;
}

.icon-arrow-down {
    width: 7px;
    height: 7px;
    margin-left: 12px;
    margin-top: 0;
    transition: transform 0.2s ease;
}

.breadcrumbs-item.active .icon-arrow-down {
    transform: rotate(180deg);
}

.icon-separator {
    width: 12px;
    height: 12px;
    margin: 0 15px;
}

/* 페이지 타이틀 스타일 */
.page-title {
    font-weight: 700;
    color: #1c1c1c;
    opacity: 0;
    animation: fadeUpSmall 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.3s;
}

.page-title.center-align-title {
    text-align: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    width: 160px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 8px 0;
    flex-direction: column;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    transition: background-color 0.2s;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    font-weight: 600;
}

.dropdown-item.current {
    background-color: #f7f7f7;
    font-weight: 700;
}

.breadcrumbs-item.active-page {
    color: #1c1c1c;
    font-weight: 700;
}

/* ==================== 4가지 약속 ('Basic Sincerity') 섹션 ==================== */
.story_system_sect {
    background: #1B45A8;
    padding: 180px 0 320px;
    position: relative;
    overflow: hidden;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee_bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.marquee_track {
    display: flex;
    white-space: nowrap;
    animation: infiniteScroll 20s linear infinite;
}

.marquee_track .txt {
    font-size: 100px;
    font-weight: 400;
    color: rgba(250, 250, 250, 0.1);
    font-family: 'Marcellus', serif;
    padding-right: 0.2em;
    flex-shrink: 0;
}

.story_system_sect .in {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.story_system_sect .sub_tit_wrap {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease;
}

.story_system_sect.active .sub_tit_wrap {
    opacity: 1;
    transform: translateY(0);
}

.story_system_sect .sub_tit_wrap .tit {
    font-size: 42px;
    font-weight: 750;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.story_system_sect .sub_tit_wrap .txt {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.story_system_sect .cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.story_system_sect .img_box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1 / 1.35;
    transition: transform 1.7s ease, opacity 1.7s ease, filter 1.7s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(180px);
    filter: blur(10px);
}

.story_system_sect.active .img_box {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger Effect */
.story_system_sect.active .img_box:nth-child(1) {
    transition-delay: 0.2s;
}

.story_system_sect.active .img_box:nth-child(2) {
    transition-delay: 0.4s;
}

.story_system_sect.active .img_box:nth-child(3) {
    transition-delay: 0.6s;
}

.story_system_sect.active .img_box:nth-child(4) {
    transition-delay: 0.8s;
}

/* Initial state for even items: 120px (layout) + 100px (animation) = 220px */
.story_system_sect .img_box:nth-child(even) {
    transform: translateY(300px);
}

/* Active state for even items: Return to 120px layout offset */
.story_system_sect.active .img_box:nth-child(even) {
    transform: translateY(120px);
}

.story_system_sect .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(16, 65, 150, 0.8) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.story_system_sect .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.story_system_sect .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.story_system_sect .txt_box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: transparent;
    z-index: 2;
}

.story_system_sect .txt_box .tit {
    font-size: calc(var(--font-size-32) * var(--font-scale)) !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.story_system_sect .txt_box .txt {
    font-size: calc(var(--font-size-16) * var(--font-scale)) !important;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

/* ==================== 상담 및 공지 섹션 ==================== */
.counsel-wrap {
    background-color: #f7f8fa;
    padding: 140px 0;
}

.counsel-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.notice-board {
    flex: 0 0 40%;
    padding-top: 20px;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1c1c1c;
    padding-bottom: 30px;
}

.notice-header .tit-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-tit {
    font-size: 64px;
    font-family: 'Marcellus', serif;
    color: #1c1c1c;
    margin: 0;
    line-height: 1;
    font-weight: 400;
}

.notice-desc {
    font-size: 16px;
    color: #1c1c1c;
    margin: 0;
    font-weight: 500;
    opacity: 0.7;
}

.more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1c1c1c;
    transition: color 0.3s;
}

.more-icon svg {
    transition: transform 0.3s ease;
}

.more-icon:hover {
    color: #0c2e6b;
}

.more-icon:hover svg {
    transform: rotate(90deg);
}

.counsel-form {
    flex: 1;
    background-color: #DCE6F2;
    padding: 60px;
    border-radius: 30px;
}

.form-tit {
    font-size: 28px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.4;
    margin-bottom: 30px;

}

.form-subbox {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.input-field {
    width: 100%;
    height: 55px;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s;
    outline: none;
}

.input-field:focus {
    border-color: #1B45A8;
}

select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.submit-btn {
    font-family: 'Pretendard Variable', Pretendard Variable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    width: 100%;
    height: 55px;
    background-color: #1B45A8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #153685;
}

.form-agree>p {
    font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
    color: #1c1c1c;
    margin-top: 25px;
    font-weight: 700;
}

.form-agree a {
    color: #1B45A8;
    text-decoration: underline;
    margin-left: 5px;
}

/* ==================== 특화 진료센터 (Swiper) ==================== */
.land_center_sect {
    width: 100%;
    padding: 160px 0 180px;
    overflow: hidden;
}

.land_tit_wrap {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.land_tit_wrap .tit {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 750;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 1.4;
}

.land_tit_wrap .txt {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    line-height: 1.8;
}

.center-swiper {
    width: 100%;
    overflow: visible;
}

.center-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.center-swiper .swiper-slide {
    width: 380px;
    aspect-ratio: 1 / 1.5;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 30px;
}

.center-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.center-swiper .swiper-slide:hover .slide-bg {
    transform: scale(1.1);
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(0px);
    z-index: 1;
    transition: all 0.3s ease;
}

.center-swiper .swiper-slide:hover .slide-bg::before {
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(10px);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 2;
    color: #fff;
}

.slide-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    transition: transform 0.3s ease;
}

.slide-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.center-swiper .swiper-slide:hover .slide-details {
    max-height: 300px;
    opacity: 1;
}

.slide-details .desc {
    font-size: 14px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.detail-list li {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #fff;
    line-height: 1.8;
    position: relative;
}

.land_center_sect .swiper-pagination {
    position: relative;
    margin-top: 100px;
    height: 4px;
    background: #e0e0e0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.land_center_sect .swiper-pagination-progressbar-fill {
    background: #1B45A8;
    height: 100%;
}

/* ==================== 텍스트 + 이미지 섹션 (Common) ==================== */
.center_txt_img_sect {
    width: 100%;
    text-align: center;
    background-color: #fff;
}

.center_txt_img_sect .inner {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.center_txt_img_sect .tit-wrap {
    margin-bottom: 60px;
    text-align: center;
    /* Init for Anim */
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.center_txt_img_sect .tit {
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

.center_txt_img_sect .desc {
    font-size: 18px;
    color: #1c1c1c;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
    text-align: center;
}

.center_txt_img_sect .desc p {
    margin: 5px 0 0;
}

.center_txt_img_sect .desc p:first-child {
    margin-top: 0;
}

.center_txt_img_sect .img-box {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 50% 0 50%);
    /* Init for Anim */
    transition: clip-path 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.center_txt_img_sect .img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.1);
    /* Init for Anim */
    transition: transform 2.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

/* Animation Active State */
.center_txt_img_sect.active .tit-wrap {
    opacity: 1;
    transform: translateY(0);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.center_txt_img_sect.active .img-box {
    clip-path: inset(0 0 0 0);
    transition-delay: 0.2s;
}

.center_txt_img_sect.active .img-box img {
    transform: scale(1.0);
    transition-delay: 0.2s;
}

/* ==================== 관절질환 주요원인 섹션 ==================== */
.joint_causes_sect {
    width: 100%;
    padding: 180px 0;
    background-color: #fff;
}

.joint_causes_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.joint_causes_sect .section-header {
    text-align: center;
    margin-bottom: 80px;
    /* Init for Anim */
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.joint_causes_sect .section-header .tit {
    font-size: calc(var(--font-size-42) * var(--font-scale));
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.joint_causes_sect .section-header .desc {
    font-size: calc(var(--font-size-16) * var(--font-scale));
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

.joint_causes_sect .causes-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    flex-wrap: wrap;
}

.joint_causes_sect .cause-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;

    /* Init for Anim */
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.joint_causes_sect .icon-box {

    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.joint_causes_sect .icon-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.joint_causes_sect .cause-title {
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.4;
    word-break: keep-all;
}

/* Animation Active State */
.joint_causes_sect.active .section-header {
    opacity: 1;
    transform: translateY(0);
}

.joint_causes_sect.active .cause-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.joint_causes_sect.active .cause-item:nth-child(1) {
    transition-delay: 0.1s;
}

.joint_causes_sect.active .cause-item:nth-child(2) {
    transition-delay: 0.2s;
}

.joint_causes_sect.active .cause-item:nth-child(3) {
    transition-delay: 0.3s;
}

.joint_causes_sect.active .cause-item:nth-child(4) {
    transition-delay: 0.4s;
}

.joint_causes_sect.active .cause-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* ==================== 푸터 전체 레이아웃 (Common) ==================== */
.site-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: 600px;
}

.footer-content-inner {
    padding: 0 195px 25px;
    margin: 0 auto;
    width: 100%;
}

.clinic-address {
    grid-column: 1;
    grid-row: 1;
}

.clinic-address h3 {
    font-size: calc(var(--font-size-35) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0 0 20px;
    line-height: 1.5;
    margin-top: 80px;
}

.map-links {
    grid-column: 1;
    grid-row: 2;
    padding: 0;
}

.contact-section {
    grid-column: 1;
    grid-row: 3;
    padding: 30px 0;
    position: relative;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.footer-bottom {
    grid-column: 1;
    grid-row: 4;
}

.footer-right {
    grid-column: 2;
    grid-row: 1 / 5;
    position: relative;
}

.address-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
}

.badge-subway {
    background-color: #1B45A8;
    color: white;
    margin-right: 12px;
}

.badge-parking {
    background-color: #1B45A8;
    color: white;
    margin-right: 12px;
}

.address-details {
    margin-top: 15px;
}

.detail-item {
    font-size: 14px;
    color: #1c1c1c;
    margin: 8px 0;
    line-height: 1.6;
}

.parking-info {
    margin-top: 10px;
}

.sub-text {
    font-size: 13px;
    color: #1c1c1c;
}

.map-links .footer-content-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.map-link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    background: white;
    border: 1px solid #CCD2DD;
    border-radius: 65px;
    text-decoration: none;
    transition: all 0.2s;
    flex-direction: row;
    justify-content: center;
}

.map-link-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-link-btn .text {
    font-size: 15px;
    color: #1c1c1c;
    font-weight: 700;
}

.contact-items {
    display: flex;
    gap: 40px;
}

.contact-item {
    flex: 1;
}

.contact-label {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0 0 10px;
}

.phone-number a {
    font-size: calc(var(--font-size-35) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    text-decoration: none;
    letter-spacing: -.5px;
}

.phone-number a:hover {
    color: #1B45A8;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.hours-table td {
    padding: 4px 0;
    font-size: 14px;
    color: #1c1c1c;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #1c1c1c;
    padding-right: 20px;
    width: 120px;
}

.hours-note {
    margin-top: 10px;
}

.hours-note p {
    font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
    color: #1c1c1c;
    margin: 4px 0;
    line-height: 1.6;
}

.footer-logo img {
    height: 45px;
    margin: 30px 0 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-link {
    font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
    color: #1c1c1c;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    opacity: 0.7;
}

.footer-links a:nth-child(1) {
    font-weight: 700;
    opacity: 1;
}

.footer-info {
    margin-bottom: 15px;
}

.footer-info p {
    font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    color: #1c1c1c;
    margin: 5px 0;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 15px;
}

.footer-copyright p {
    font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    color: #1c1c1c;
    margin: 0;
    opacity: .5;
}

/* 오른쪽 지도 영역 */
.footer-map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-color: #e9ecef;
}

/* ==================== Sticky Title + List Section ==================== */
.sticky_tit_list_sect {
    padding: 240px 0;
    overflow: hidden;
}

.sticky_tit_list_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 220px;
}

.sticky_tit_list_sect .tit-box .tit {
    font-size: calc(var(--font-size-48) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.5;
    word-break: keep-all;
}

.sticky_tit_list_sect .list-box {
    flex: 1;
    width: 100%;
}

.sticky_tit_list_sect .list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sticky_tit_list_sect .list-box li {
    display: flex;
    align-items: center;
    background-color: #F6F8FB;
    padding: 35px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.sticky_tit_list_sect .list-box li:hover {
    background-color: #eef2f8;
}

.sticky_tit_list_sect .list-box li .num {
    font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1B45A8;
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.sticky_tit_list_sect .list-box li .txt {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    font-weight: 600;
    color: #1c1c1c;
    line-height: 1.4;
    word-break: keep-all;
}

/* Animation */
.sticky_tit_list_sect .tit-box {
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.sticky_tit_list_sect .list-box li {
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.sticky_tit_list_sect.active .tit-box {
    opacity: 1;
    transform: translateY(0);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.1s;
}

.sticky_tit_list_sect.active .list-box li {
    opacity: 1;
    transform: translateY(0);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Staggered List Items */
.sticky_tit_list_sect.active .list-box li:nth-child(1) {
    transition-delay: 0.2s;
}

.sticky_tit_list_sect.active .list-box li:nth-child(2) {
    transition-delay: 0.4s;
}

.sticky_tit_list_sect.active .list-box li:nth-child(3) {
    transition-delay: 0.6s;
}

.sticky_tit_list_sect.active .list-box li:nth-child(4) {
    transition-delay: 0.8s;
}

.sticky_tit_list_sect.active .list-box li:nth-child(5) {
    transition-delay: 1.0s;
}

.sticky_tit_list_sect.active .list-box li:nth-child(6) {
    transition-delay: 1.2s;
}

.sticky_tit_list_sect.active .list-box li:nth-child(7) {
    transition-delay: 1.4s;
}

/* ==================== FAQ Accordion Section ==================== */
.faq_accordion_sect {
    padding: 200px 0;
    background-color: #fff;
}

.faq_accordion_sect .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq_accordion_sect .sub-tit {
    display: block;
    font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    color: #1c1c1c;
    opacity: 0.7;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq_accordion_sect .tit {
    font-weight: 750;
    color: #1c1c1c;
    line-height: 1.5;
}

.faq_accordion_sect .faq-header {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
}

.faq_accordion_sect .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq_accordion_sect .faq-item {
    background-color: #F8F9FA;
    border-radius: 60px;
    overflow: hidden;
    /* transition: all 0.3s ease; - Modified for animation */
    transition: opacity 2.5s cubic-bezier(0.19, 1, 0.22, 1), transform 2.5s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(100px);
}

.faq_accordion_sect .faq-q {
    padding: 40px 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq_accordion_sect .faq-q .q-mark {
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1B45A8;
    margin-right: 15px;
    line-height: 1;
    transition: color 0.4s ease;
}

.faq_accordion_sect .faq-q .q-txt {
    font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    flex: 1;
    padding-right: 20px;
    transition: color 0.4s ease;
}

.faq_accordion_sect .faq-q .arrow-icon {
    width: 28px !important;
    height: 28px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.4s ease;
    color: #999;
}

.faq_accordion_sect .faq-q .arrow-icon .icon {
    width: 100%;
    height: 100%;
}

.faq_accordion_sect .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    background-color: transparent;
    opacity: 0;
}

.faq_accordion_sect .faq-a .a-inner {
    padding: 0 85px 55px 85px;
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Active State */
.faq_accordion_sect .faq-item.active {
    background-color: #1B45A8;
    box-shadow: 0 10px 30px rgba(27, 69, 168, 0.15);
}

.faq_accordion_sect .faq-item.active .faq-q .q-mark,
.faq_accordion_sect .faq-item.active .faq-q .q-txt,
.faq_accordion_sect .faq-item.active .faq-q .arrow-icon {
    color: #fff;
}

.faq_accordion_sect .faq-item.active .faq-q .arrow-icon {
    transform: rotate(180deg);
}

.faq_accordion_sect .faq-item.active .faq-a {
    max-height: 500px;
    opacity: 1;
}



/* FAQ Scroll Animation Active State */
.faq_accordion_sect.active .faq-header {
    opacity: 1;
    transform: translateY(0);
}

.faq_accordion_sect.active .faq-item {
    opacity: 1;
    transform: translateY(0);
}

.faq_accordion_sect.active .faq-item:nth-child(1) {
    transition-delay: 0.2s;
}

.faq_accordion_sect.active .faq-item:nth-child(2) {
    transition-delay: 0.4s;
}

.faq_accordion_sect.active .faq-item:nth-child(3) {
    transition-delay: 0.6s;
}

.faq_accordion_sect.active .faq-item:nth-child(4) {
    transition-delay: 0.8s;
}

.faq_accordion_sect.active .faq-item:nth-child(5) {
    transition-delay: 1.0s;
}

.faq_accordion_sect.active .faq-item:nth-child(6) {
    transition-delay: 1.2s;
}

/* ==================== 대장내시경 특장점 섹션 (3-Column Features) ==================== */
.colon_feature_sect {
    padding: 180px 0;
    /* Light blue/gray background from reference */
}

.colon_feature_sect .inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.colon_feature_sect .cont-box {
    background-color: #F4F6F9;
    /* Matching the card background if different or same as sect */
    padding: 100px 80px;
    border-radius: 40px;
}

/* If the background is on the section, we might not need .cont-box bg, but reference shows a contained white/light area.
   Let's check the structure. If the user wants EXACT layout from image 1 applied to image 2 content.
   Image 1 has a title outside or top, and then 3 circles.
*/

.colon_feature_sect .tit_wrap {
    margin-bottom: 80px;
    text-align: left;
    /* Image 2 has left aligned title? No, Image 2 starts with title. Center for features? */
    /* Looking at image 1 (Brain IV), title is left aligned: "뇌 기능 영양 수액 프로그램" */
    /* Image 2 (Colonoscopy) title is "대장암 예방, 검사의 '질'이 결정합니다." */
}

.colon_feature_sect .tit {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 20px;
    word-break: keep-all;
}

.colon_feature_sect .desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.colon_feature_sect .feature-list {
    display: flex;
    justify-content: space-between;
    background-color: #f3f4f8;
    /* The light box background */
    padding: 100px 40px;
    border-radius: 20px;
}

.colon_feature_sect .feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.colon_feature_sect .thumb {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    /* Circle crop */
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;

}

.colon_feature_sect .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.colon_feature_sect .f-tit {
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.colon_feature_sect .f-desc {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    opacity: 0.7;
    line-height: 1.8;
    word-break: keep-all;
}

/* National Health Checkup - Pill Type Title Variation */
.colon_feature_sect.type-pill .feature-box-wrap {
    background-color: #f3f4f8;
    border-radius: 20px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.colon_feature_sect.type-pill .tit-pill-wrap {
    background-color: #1B45A8;
    /* Teal Green */
    border-radius: 100px;
    padding: 24px 60px;
    margin-bottom: 80px;
    display: inline-block;
}

.colon_feature_sect.type-pill .tit-pill-wrap .tit {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.colon_feature_sect.type-pill .feature-list-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

@media (max-width: 1024px) {
    .colon_feature_sect.type-pill .feature-list-row {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .colon_feature_sect .feature-list {
        flex-direction: column;
        gap: 60px;
        padding: 60px 30px;
    }

    .colon_feature_sect .thumb {
        width: 200px;
        height: 200px;
    }
}

/* Animation for Colon Feature Section */
.colon_feature_sect .tit_wrap,
.colon_feature_sect .tit-pill-wrap,
.colon_feature_sect .feature-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.colon_feature_sect.active .tit_wrap,
.colon_feature_sect.active .tit-pill-wrap {
    opacity: 1;
    transform: translateY(0);
}

.colon_feature_sect.active .feature-item {
    opacity: 1;
    transform: translateY(0);
}

.colon_feature_sect.active .feature-item:nth-child(1) {
    transition-delay: 0.2s;
}

.colon_feature_sect.active .feature-item:nth-child(2) {
    transition-delay: 0.4s;
}

.colon_feature_sect.active .feature-item:nth-child(3) {
    transition-delay: 0.6s;
}

/* ==================== 맞춤 솔루션 공통 섹션 ==================== */
.custom_sol_sect {
    padding: 180px 0;
}

.custom_sol_sect .inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom_sol_sect .tit_wrap {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.custom_sol_sect .sub_txt {
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    color: #1c1c1c;
    opacity: 0.3;
    margin-bottom: 15px;
    font-weight: 750;
}

.custom_sol_sect .tit {
    font-size: 52px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 25px;
    line-height: 1.3;
}

.custom_sol_sect .tit .highlight {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, #E8FF9A 60%);
    display: inline-block;
    padding-bottom: 5px;
}

.custom_sol_sect .desc p {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    line-height: 1.8;
    opacity: 0.7;
}

.custom_sol_sect .list_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.custom_sol_sect .item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.custom_sol_sect .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.custom_sol_sect .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_sol_sect .placeholder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom_sol_sect .name {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
    text-align: center;
}

.custom_sol_sect .txt {
    font-size: 16px;
    color: #777;
    line-height: 1.8;
    text-align: center;
    word-break: keep-all;
}

/* Custom Solution Animation Active State */
.custom_sol_sect.active .tit_wrap {
    opacity: 1;
    transform: translateY(0);
}

.custom_sol_sect.active .item {
    opacity: 1;
    transform: translateY(0);
}

.custom_sol_sect.active .item:nth-child(1) {
    transition-delay: 0.2s;
}

.custom_sol_sect.active .item:nth-child(2) {
    transition-delay: 0.4s;
}

.custom_sol_sect.active .item:nth-child(3) {
    transition-delay: 0.6s;
}

.custom_sol_sect.active .item:nth-child(4) {
    transition-delay: 0.8s;
}



/* ==================== 간·소화기 소개 섹션 ==================== */
.intro_desc_sect {
    padding: 180px 0 0;
}

.intro_desc_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro_desc_sect .box {
    background-color: #f5f5f5;
    /* Updated background color */
    border-radius: 40px;
    padding: 100px 120px;
    display: flex;
    justify-content: flex-start;
    /* Align content to the left */
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Doctor image as background */
    background-image: url('/wp-content/uploads/liver_doctor_real.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
    /* Align image to right bottom */
    background-size: contain;
    /* Contain strictly inside */
    min-height: 500px;
    /* Ensure height for image visibility */
}

.intro_desc_sect .txt_wrap {
    width: 55%;
    /* Limit text width to not overlap image */
    position: relative;
    z-index: 2;
}

.intro_desc_sect .sub_tit {
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    color: #999;
    margin-bottom: 15px;
    font-weight: 700;
}

.intro_desc_sect .tit {
    font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.5;
    margin-bottom: 30px;
    word-break: keep-all;
}

.intro_desc_sect .desc p {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.intro_desc_sect .desc p:last-child {
    margin-bottom: 0;
}

/* No separate img_wrap needed anymore */
.intro_desc_sect .img_wrap {
    display: none;
}

/* Animation */
.intro_desc_sect .txt_wrap {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.intro_desc_sect.active .txt_wrap {
    opacity: 1;
    transform: translateY(0);
}

/* Local Responsive Styles for this section */
@media (max-width: 1280px) {
    .intro_desc_sect .box {
        padding: 60px 40px;
        flex-direction: column;
        align-items: flex-start;
        background-image: none;
        /* Remove background on tablet/mobile */
        padding-bottom: 0;
        /* Remove bottom padding so image sits flush */
    }

    .intro_desc_sect .txt_wrap {
        width: 100%;
        margin-bottom: 20px;
    }

    .intro_desc_sect .tit {
        font-size: 40px;
    }

    /* Add image via pseudo-element for better control in stacked layout */
    .intro_desc_sect .box::after {
        content: '';
        display: block;
        width: calc(100% + 80px);
        /* Extend to cover horizontal padding */
        max-width: none;
        height: 630px;
        margin-left: -40px;
        /* Pull left to edge */
        margin-bottom: 0;
        background-image: url('/wp-content/uploads/liver_doctor_real.webp');
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
    }
}

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

    .intro_desc_sect .box {
        padding: 40px 20px;
        padding-bottom: 0;
        border-radius: 30px;
    }

    .intro_desc_sect .tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
        margin-bottom: 10px;
        word-break: keep-all;
    }

    .intro_desc_sect .sub_tit {
        font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
        margin-bottom: 10px;
    }

    .intro_desc_sect .box::after {
        height: 250px;
        /* Smaller height for mobile */
        width: calc(100% + 40px);
        /* Extend to cover mobile padding */
        margin-left: -20px;
    }

    .intro_desc_sect .desc p {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }
}


/* ==================== 반응형 스타일 (Responsive) ==================== */

/* Max Width 2000px */
@media screen and (max-width: 2000px) {
    :root {
        --font-size-12: clamp(10px, 2vw, 12px);
        --font-size-14: clamp(12px, 2.5vw, 14px);
        --font-size-15: clamp(13px, 2.8vw, 15px);
        --font-size-18: clamp(16px, 3.2vw, 18px);
        --font-size-20: clamp(18px, 3.5vw, 20px);
        --font-size-23: clamp(20px, 4vw, 23px);
        --font-size-28: clamp(24px, 5vw, 28px);
        --font-size-32: clamp(28px, 5.5vw, 32px);
        --font-size-35: clamp(30px, 6vw, 35px);
        --font-size-40: clamp(34px, 7vw, 40px);
        --font-size-52: clamp(44px, 9vw, 52px);
        --font-size-57: clamp(48px, 10vw, 57px);
        --font-size-70: clamp(58px, 12vw, 70px);
        --font-size-165: clamp(100px, 18vw, 165px);
    }

    .footer-content-inner {
        padding: 0 120px 25px;
    }

    .custom_sol_sect .tit {
        font-size: 48px;
    }

    .custom_sol_sect .sub_txt {
        font-size: 17px;
    }

    .custom_sol_sect .desc p {
        font-size: 17px;
    }

    .custom_sol_sect .name {
        font-size: 22px;
    }

    .custom_sol_sect .txt {
        font-size: 15px;
    }
}

/* Max Width 1640px */
@media (max-width: 1640px) {

    h1,
    .h1,
    .heading-1 {
        font-size: calc(var(--font-size-48) * var(--font-scale)) !important;
    }

    h2,
    .h2,
    .heading-2 {
        font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    }


    .custom_sol_sect .name {
        font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    }

    p {
        font-size: calc(var(--font-size-sm) * var(--font-scale)) !important;
    }

    .custom_sol_sect .desc p {
        font-size: calc(var(--font-size-sm) * var(--font-scale)) !important;
    }

    .faq_accordion_sect .faq-a .a-inner {
        font-size: calc(var(--font-size-sm) * var(--font-scale)) !important;
    }

    .center_txt_img_sect .tit {
        margin-bottom: 20px;
    }

    .custom_sol_sect .tit {
        font-size: 42px;
    }

    .custom_sol_sect .sub_txt {
        font-size: 16px;
    }

    .custom_sol_sect .desc p {
        font-size: 16px;
    }

    .custom_sol_sect .name {
        font-size: 20px;
    }

    .custom_sol_sect .txt {
        font-size: 15px;
    }

    .footer-content-inner {
        padding: 0 60px 25px;
    }
}

/* Max Width 1440px (Mobile Header & More) */
@media (max-width: 1440px) {

    /* Header Mobile Menu Logic */
    .nav:not(.on) {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .header_in {
        height: 60px;
        padding: 0 1rem;
    }

    .logo img {
        height: 32px;
    }

    .nav {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, #1B45A8 0%, #1B45A8 100%);
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.4s ease, visibility 0s 0.4s;
        overflow-y: auto;
        padding: 1.5rem;
        pointer-events: none;
        flex-direction: column;
        justify-content: flex-start;
        visibility: hidden;
    }

    .nav.on {
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible !important;
        opacity: 1 !important;
        transition: transform 0.4s ease, opacity 0.3s ease;
    }

    .nav:hover .depth1 {
        gap: 0;
    }

    .nav:hover::before {
        height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .nav:hover .depth2 {
        opacity: 0;
        visibility: hidden;
    }

    .mo_top {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-bottom: 2rem;
    }

    /* Fixed: Mobile Utility Styles (Lang & Close) */
    .mo_util {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .lang {
        position: relative;
    }

    .lang .btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background-color: #fff;
        color: #1B45A8;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
        font-weight: 700;
        cursor: pointer;
        line-height: 1;
        height: 32px;
    }

    .lang .btn svg {
        width: 10px;
        fill: #1B45A8;
        margin-top: 1px;
    }

    .lang ul {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border-radius: 15px;
        padding: 10px 0;
        min-width: 90px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        z-index: 20;
        text-align: center;
    }

    .lang:hover ul {
        display: block;
    }

    .lang ul li {
        text-align: center;
        list-style: none !important;
        margin: 0 !important;
    }

    .lang ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 14px;
        color: #1c1c1c;
        font-weight: 600;
        text-decoration: none;
    }

    .lang ul li a:hover {
        background: #f5f5f5;
        color: #1B45A8;
    }

    .mo_util .close_btn {
        width: 24px;
        height: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }

    .mo_util .close_btn svg {
        width: 100%;
        height: 100%;
        fill: #fff;
    }

    .depth1 {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0;
        width: 100%;
    }

    .depth1>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .depth1>li:last-child {
        border-bottom: none;
    }

    .depth1>li>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        width: 100%;
        color: #fff;
        font-size: calc(18px * var(--font-scale));
        font-weight: 700;
        border-bottom: none;
        position: relative;
    }

    .depth1>li>a::after {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        border-right: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.7);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-right: 1rem;
    }

    .depth1>li.active>a::after {
        transform: rotate(-135deg);
    }

    .depth2 {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        padding: 0;
        transition: all 0.3s ease;
    }

    .depth1>li.active .depth2 {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0 1rem 0;
    }

    .depth2 a {
        display: block;
        padding: 0 0 0.75rem 0;
        color: rgba(255, 255, 255, 0.85);
        font-size: calc(16px * var(--font-scale));
        font-weight: 600;
        text-decoration: none;
        text-align: left;
        transition: all 0.2s ease;
    }

    .depth2 a:hover {
        color: #fff;
    }

    .ham {
        display: flex;
    }

    .zoom_font {
        display: none;
    }

    .right_wrap .login .tool {
        display: none;
    }

    .right_wrap {
        gap: 0.5rem;
    }

    /* Other 1440px styles */
    .center-swiper .swiper-slide {
        width: 350px;
    }

    .slide-title {
        font-size: 26px;
    }
}

/* Max Width 1240px */
@media (max-width: 1240px) {
    .custom_sol_sect .tit {
        font-size: 36px;
    }

    .custom_sol_sect .list_wrap {
        gap: 20px;
    }

    .custom_sol_sect .sub_txt {
        font-size: 15px;
    }

    .custom_sol_sect .desc p {
        font-size: 15px;
    }

    .custom_sol_sect .name {
        font-size: 18px;
    }

    .custom_sol_sect .txt {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .depth1 {
        gap: 2rem;
    }

    .depth1>li>a {
        font-size: calc(16px * var(--font-scale));
    }

    .header_in {
        padding: 0 1.5rem;
    }
}

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

    /* Story System */
    .story_system_sect {
        padding: 80px 0;
    }

    .story_system_sect::before {
        font-size: 80px;
    }

    .story_system_sect .sub_tit_wrap .tit {
        font-size: 36px;
    }

    .story_system_sect .cont {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .story_system_sect .img_box:nth-child(even) {
        transform: none;
    }

    .story_system_sect .img_box:nth-child(even):hover {
        transform: translateY(-10px);
    }

    .story_system_sect .img {}

    /* Counsel */
    .counsel-inner {
        flex-direction: column;
        gap: 50px;
    }

    .notice-board,
    .counsel-form {
        width: 100%;
        flex: none;
    }

    /* Land Center */
    .center-swiper .swiper-slide {
        width: 300px;
    }

    .slide-title {
        font-size: 24px;
    }

    /* Footer */
    .footer-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .clinic-address {
        display: none;
    }

    .map-links {
        display: none;
    }

    .contact-section {
        grid-column: 1;
        grid-row: 1;
        padding: 30px 0;
    }

    .contact-section::after {
        display: block;
    }

    .footer-right {
        grid-column: 1;
        grid-row: 2;
        min-height: 400px;
    }

    .footer-bottom {
        grid-column: 1;
        grid-row: 3;
        padding: 30px 0;
    }

    .footer-map-container {
        min-height: 400px;
    }

    .contact-items {
        flex-direction: column;
        gap: 30px;
    }

    /* Sticky List */
    .sticky_tit_list_sect .inner {
        flex-direction: column;
        gap: 50px;
    }

    .sticky_tit_list_sect .tit-box {
        width: 100%;
        position: static;
        text-align: center;
    }

    .sticky_tit_list_sect .tit-box .tit {
        font-size: 32px;
    }

    .sticky_tit_list_sect .tit-box br {
        display: none;
    }

    /* Land Total */

    /* Custom Sol */
    .custom_sol_sect .list_wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .custom_sol_sect .thumb {
        margin-bottom: 16px;
    }
}

/* Max Width 768px */
@media (max-width: 768px) {

    /* Header & Modal */
    .header-inner {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .zoom_font .btn {
        width: 28px;
        height: 28px;
    }

    .zoom_font .btn svg {
        width: 16px;
        height: 16px;
    }

    .zoom_font .txt {
        font-size: calc(14px * var(--font-scale));
        margin: 0 6px;
        min-width: 32px;
        height: 28px;
    }

    .container {
        padding: 0 1rem;
    }

    .main-content {
        margin-top: 140px;
    }

    .font-alert-modal .modal-content {
        padding: 30px 25px;
        min-width: 300px;
        margin: 20px;
    }

    .font-alert-modal .modal-message {
        font-size: calc(var(--font-size-md) * var(--font-scale));
        margin-bottom: 25px;
    }

    .font-alert-modal .modal-button {
        padding: 12px 24px;
        font-size: calc(var(--font-size-md) * var(--font-scale));
    }

    .sticky_tit_list_sect .inner {
        gap: 0;
    }

    /* Breadcrumbs */
    .icon-separator {
        margin: 0 8px;
        display: none;
    }

    .page-header-container {
        padding: 0 20px;
        height: 160px;
    }

    .page-title {
        font-size: calc(var(--font-size-35) * var(--font-scale)) !important;
    }

    .breadcrumbs {
        font-size: 13px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .breadcrumbs-item {
        margin-left: 0 !important;
    }

    .breadcrumbs-item:first-child {
        margin-left: 0 !important;
    }

    .icon-home {
        width: 16px;
        height: 16px;
    }

    .dropdown-menu {
        width: 180px;
    }

    /* Story System (Horizontal Scroll) */
    .story_system_sect {
        padding: 60px 0;
    }

    .story_system_sect .cont {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 0 20px 30px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .story_system_sect .img_box {
        flex: 0 0 70%;
        width: 80%;
        scroll-snap-align: center;
        margin-bottom: 0;
        height: auto;
        aspect-ratio: 1 / 1.35;
    }

    .story_system_sect .img_box:first-child {
        margin-left: 0;
    }

    .story_system_sect .img {
        height: 100%;
    }

    .story_system_sect::before {
        font-size: 50px;
    }

    .story_system_sect .sub_tit_wrap {
        margin-bottom: 50px;
    }

    .story_system_sect .sub_tit_wrap .tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
        margin-bottom: 20px;
    }

    .story_system_sect .sub_tit_wrap .txt {
        font-size: 16px;
    }

    .story_system_sect .txt_box {
        padding: 30px 25px;
    }

    .story_system_sect .txt_box .tit {
        font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    }

    .story_system_sect .txt_box .txt {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }

    /* Counsel */
    .counsel-form {
        padding: 40px 20px;
    }

    .form-tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Land Center */
    .land_center_sect {
        padding: 60px 0 80px;
    }

    .land_tit_wrap {
        margin-bottom: 40px;
    }

    .land_tit_wrap .tit,
    .slide-title {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
    }

    .land_tit_wrap .txt {
        font-size: 16px;
    }

    .center-swiper .swiper-slide {
        width: 280px;
    }

    .slide-content {
        padding: 25px 20px;
    }

    .jp_only,
    .tiny_mo_only {
        display: none;
    }

    /* Footer */
    .footer-content-inner {
        padding: 0 20px;
    }

    .contact-section {
        padding: 20px 0;
    }

    .contact-label {
        font-size: 14px;
    }

    .phone-number a {
        font-size: 26px;
    }

    .hours-table td {
        font-size: 13px;
    }

    .footer-right,
    .footer-map-container {
        min-height: 350px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-logo h2 {
        font-size: 20px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-info p,
    .footer-copyright p {
        font-size: 11px !important;
    }

    /* Center Text Img */
    .center_txt_img_sect {
        padding: 40px 0;
    }

    .center_txt_img_sect .tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
        margin-bottom: 15px;
        text-align: left;
    }

    .center_txt_img_sect .desc {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
        text-align: left;
    }

    .center_txt_img_sect .tit-wrap {
        margin-bottom: 20px;
        text-align: left;
    }

    .center_txt_img_sect .mo-only {
        display: inline;
    }

    .center_txt_img_sect .img-box {
        border-radius: 15px;
    }

    /* Joint Causes */
    .joint_causes_sect {
        padding: 60px 0;
    }

    .joint_causes_sect .section-header {
        margin-bottom: 40px;
    }

    .joint_causes_sect .section-header .tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
        margin-bottom: 15px;
    }

    .joint_causes_sect .section-header .desc {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }

    .joint_causes_sect .causes-list {
        gap: 25px;
        justify-content: space-around;
    }

    .joint_causes_sect .cause-item {
        width: 100px;
    }

    .joint_causes_sect .icon-box {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }

    .joint_causes_sect .cause-title {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }

    /* Sticky List */
    .sticky_tit_list_sect {
        padding: 80px 20px;
    }

    .sticky_tit_list_sect .tit-box .tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
        margin-bottom: 20px !important;
        text-align: left;
    }

    .sticky_tit_list_sect .list-box li {
        padding: 15px;
        border-radius: 20px;
        align-items: flex-start;
    }

    .sticky_tit_list_sect .list-box li .num {
        font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
        margin-right: 8px;
        margin-top: 2px;
    }

    .sticky_tit_list_sect .list-box li .txt {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }

    .sticky_tit_list_sect .list-box ul {
        gap: 15px;
    }

    /* FAQ */
    p {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }

    .faq_accordion_sect {
        padding: 80px 0;
    }

    .faq_accordion_sect .tit {
        font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
    }

    .faq_accordion_sect .faq-item {
        border-radius: 20px;
    }

    .faq_accordion_sect .faq-q {
        padding: 20px 25px;
        align-items: baseline;
    }

    .faq_accordion_sect .faq-q .q-txt,
    .faq_accordion_sect .faq-q .q-mark {
        font-size: calc(var(--font-size-16) * var(--font-scale)) !important;
    }

    .faq_accordion_sect .faq-q .q-mark {
        margin-right: 8px;
    }

    .faq_accordion_sect .faq-list {
        gap: 15px;
    }

    .faq_accordion_sect .faq-a .a-inner {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
        padding: 0 25px 25px 25px;
    }

    .faq_accordion_sect .sub-tit {
        font-size: calc(var(--font-size-14) * var(--font-scale)) !important;
    }

    @media (max-width: 768px) {

        /* Other Mobile Styling */
        .custom_sol_sect .tit {
            font-size: calc(var(--font-size-26) * var(--font-scale)) !important;
        }

        .custom_sol_sect .list_wrap {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    /* Max Width 480px */
    @media (max-width: 480px) {
        .story_system_sect .sub_tit_wrap .tit {
            font-size: 26px;
        }

        .story_system_sect .txt_box {
            padding: 25px 20px;
        }

        .story_system_sect .txt_box .tit {
            font-size: 18px;
        }

        .land_tit_wrap .tit {
            font-size: 28px;
        }

        .center-swiper .swiper-slide {
            width: 240px;
        }

        .slide-title {
            font-size: 20px;
        }

        .detail-list li {
            font-size: 13px;
        }

        .custom_sol_sect .list_wrap {
            grid-template-columns: 1fr;
        }
    }
}

/* ==================== One-Stop Total Care System ==================== */
.total_care_system_sect {
    padding: 200px 0;
    background-color: #1B45A8;
    color: #fff;
}

.total_care_system_sect .progress_cont {
    margin-top: 120px;
}

.total_care_system_sect .progress_cont .ico_cont {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 110px;
    max-width: 1600px;
    margin: 0 auto;
}

.total_care_system_sect .progress_cont .ico_cont .ico {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    margin: 0 auto;
    border-radius: 100%;
    background-color: #0A3194;
}

.total_care_system_sect .progress_cont .ico_cont .ico img {
    height: 35%;
    object-fit: contain;
}

.total_care_system_sect .progress_cont .dot_cont {
    position: relative;
    margin: 30px 0;
}

.total_care_system_sect .progress_cont .dot_cont .line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid #fff;
    z-index: 10;
}

.total_care_system_sect .progress_cont .dot_cont .line:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 30px;
    background-color: rgba(27, 69, 168, 0.8);
    z-index: 10;
    transition: width 1.5s linear;
}

.total_care_system_sect .progress_cont .dot_cont .dot_wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 110px;
    margin: 35px 0;
    z-index: 5;
    max-width: 1600px;
    margin: 0 auto;
}

.total_care_system_sect .progress_cont .dot_cont .dot_wrap .box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.total_care_system_sect .progress_cont .dot_cont .dot_wrap .box .dot {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #fff;
    margin: 0;
}

.total_care_system_sect .progress_cont .txt_cont {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 110px;
    max-width: 1600px;
    margin: 0 auto;
}

.total_care_system_sect .progress_cont .txt_cont .box {
    text-align: center;
}

.total_care_system_sect .progress_cont .txt_cont .box .tit {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.total_care_system_sect .progress_cont .txt_cont .box .tit span {
    font-size: 0.7em;
}

.total_care_system_sect .progress_cont .txt_cont .box .txt {
    opacity: 0.8;
}

.total_care_system_sect .progress_cont .ico_cont .ico,
.total_care_system_sect .progress_cont .txt_cont .box {
    opacity: 0.2;
    transition: opacity 0.4s linear;
}

.total_care_system_sect .progress_cont .ico_cont .ico:nth-of-type(1),
.total_care_system_sect .progress_cont .dot_cont .dot_wrap .box:nth-of-type(1) .dot,
.total_care_system_sect .progress_cont .txt_cont .box:nth-of-type(1) {
    transition-delay: 0.4s;
}

.total_care_system_sect .progress_cont .ico_cont .ico:nth-of-type(2),
.total_care_system_sect .progress_cont .dot_cont .dot_wrap .box:nth-of-type(2) .dot,
.total_care_system_sect .progress_cont .txt_cont .box:nth-of-type(2) {
    transition-delay: 0.8s;
}

.total_care_system_sect .progress_cont .ico_cont .ico:nth-of-type(3),
.total_care_system_sect .progress_cont .dot_cont .dot_wrap .box:nth-of-type(3) .dot,
.total_care_system_sect .progress_cont .txt_cont .box:nth-of-type(3) {
    transition-delay: 1.1s;
}

.total_care_system_sect .progress_cont .ico_cont .ico:nth-of-type(4),
.total_care_system_sect .progress_cont .dot_cont .dot_wrap .box:nth-of-type(4) .dot,
.total_care_system_sect .progress_cont .txt_cont .box:nth-of-type(4) {
    transition-delay: 1.3s;
}

.total_care_system_sect .progress_cont.active .ico_cont .ico,
.total_care_system_sect .progress_cont.active .txt_cont .box {
    opacity: 1;
}

.total_care_system_sect .progress_cont.active .dot_cont .line:before {
    width: 0;
}

/* Response 2000px */
@media screen and (max-width: 2000px) {

    .total_care_system_sect .progress_cont .ico_cont,
    .total_care_system_sect .progress_cont .txt_cont,
    .total_care_system_sect .progress_cont .dot_cont .dot_wrap {
        gap: 20px;
    }
}

/* Response 1640px */
@media screen and (max-width: 1640px) {
    .total_care_system_sect .progress_cont .txt_cont .box .txt br {
        display: none;
    }
}

/* Response 1240px */
@media screen and (max-width: 1240px) {

    .total_care_system_sect .progress_cont .ico_cont,
    .total_care_system_sect .progress_cont .txt_cont,
    .total_care_system_sect .progress_cont .dot_cont .dot_wrap {
        gap: 20px;
    }
}

/* Response 768px (Mobile) */
@media screen and (max-width: 768px) {
    .total_care_system_sect {
        overflow: hidden;
    }

    .total_care_system_sect .progress_cont {
        display: grid;
        grid-template-columns: 80px 50px minmax(0, 1fr);
        align-items: stretch;
        width: 100%;
        padding: 0 20px;
        margin-top: 60px;
    }

    .total_care_system_sect .progress_cont>* {
        padding: 0;
    }

    .total_care_system_sect .progress_cont .ico_cont,
    .total_care_system_sect .progress_cont .txt_cont,
    .total_care_system_sect .progress_cont .dot_cont .dot_wrap {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        height: 100%;
        gap: 20px;
    }

    .total_care_system_sect .progress_cont .txt_cont .box .txt {
        margin-top: 0.5em;
    }

    .total_care_system_sect .progress_cont .ico_cont {
        align-items: center;
    }

    .total_care_system_sect .progress_cont .ico_cont .ico {
        width: 70px;
        height: 70px;
    }

    .total_care_system_sect .progress_cont .dot_cont .in {
        height: 100%;
    }

    .total_care_system_sect .progress_cont .dot_cont .line {
        left: 50%;
        width: 0;
        height: 100%;
        transform: translate(-50%, -50%);
        border-right: 1px solid #fff;
        border-bottom: none;
    }

    .total_care_system_sect .progress_cont .dot_cont .line:before {
        right: 50%;
        top: unset;
        bottom: -2.5%;
        width: 30px;
        height: 105%;
        transform: translateX(50%);
        transition: height 1.5s linear;
        transition-delay: 0.2s;
    }

    .total_care_system_sect .progress_cont .dot_cont .dot_wrap {
        margin: 0;
    }

    .total_care_system_sect .progress_cont .dot_cont .dot_wrap .box .dot {
        width: 10px;
        height: 10px;
        margin: 0;
    }

    .total_care_system_sect .progress_cont.active .dot_cont .line:before {
        height: 0;
        width: 30px;
    }

    .total_care_system_sect .progress_cont .txt_cont .box {
        text-align: left;
    }
}

/* ==================== Land Title Wrap (Added) ==================== */
.land_tit_wrap.center {
    text-align: center;
}

.land_tit_wrap .desc {
    margin-bottom: 1em;
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    font-weight: 700;
    color: #fff;
}

.land_tit_wrap.wh .desc {
    color: #fff;
}

.land_tit_wrap .tit {
    position: relative;
    display: inline-block;
    font-size: var(--landSubTit);
    font-weight: 700;
}

.land_tit_wrap .tit.point:before {
    content: '';
    position: absolute;
    left: -2.5%;
    bottom: 0.2em;
    width: 0;
    height: 0.5em;
    background-color: #E8FF9A;
    z-index: 2;
    transition: width 1s;
    transition-delay: 1.2s;
}

.land_tit_wrap.active .tit.point:before {
    width: 105%;
}

.land_tit_wrap .tit span {
    position: relative;
    z-index: 5;
}

.land_tit_wrap .txt {
    margin-top: 1em;
    font-weight: 500;
    line-height: 1.8;
}

.land_tit_wrap .txt .line_txt {
    position: relative;
    display: inline-block;
    margin: 0 0.3em;
}

.land_tit_wrap .txt .line_txt .txt {
    position: relative;
    font-size: 1.5em;
    font-weight: 700;
    z-index: 5;
}

.land_tit_wrap .txt .line_txt .line {
    position: absolute;
    left: 50%;
    bottom: 0.3em;
    width: 105%;
    height: 0.8em;
    transform: translateX(-50%);
    background-color: #E8FF9A;
}

.land_tit_wrap .desc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
    transition-delay: 0.2s
}

.land_tit_wrap .tit {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
    transition-delay: 0.3s
}

.land_tit_wrap .txt {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
    transition-delay: 0.4s
}

/* Active State for Animations */
.land_tit_wrap.active .desc,
.land_tit_wrap.active .tit,
.land_tit_wrap.active .txt {
    transform: translateY(0);
    opacity: 1;
}

/* Force dark color for default land_tit_wrap (e.g., Specialized Center) */
.land_tit_wrap .tit {
    color: #1c1c1c;
}

.land_tit_wrap .txt {
    color: #1c1c1c;
}

/* ==================== 심혈관 질환 원스톱 토탈케어 시스템 (Force White) ==================== */
.total_care_system_sect .land_tit_wrap {
    text-align: center;
    margin-bottom: 60px;
    color: #fff !important;
}

.total_care_system_sect .land_tit_wrap .desc {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff !important;
}

.total_care_system_sect .land_tit_wrap .tit {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff !important;
}

.total_care_system_sect .land_tit_wrap .txt {
    color: #fff !important;
    opacity: 0.8;
    /* Slight transparency for description */
}

/* Ensure active state forces full opacity for white text too */
.total_care_system_sect .land_tit_wrap.active .txt {
    opacity: 1 !important;
}

/* ==================== 뇌혈관 · 뇌신경질환 종합 검사/진단 시스템 ==================== */
.comprehensive_system_sect {
    padding: 200px 0;
    overflow: hidden;
    background-color: #1B45A8;
}

.comprehensive_system_sect .in {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.comprehensive_system_sect .land_tit_wrap {
    margin-bottom: 80px;
    text-align: center;
}

/* Hospital Name (Small top text) */
.comprehensive_system_sect .land_tit_wrap .desc {
    color: #9A9EA7;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* Main Title (Large H2) */
.comprehensive_system_sect .land_tit_wrap .tit {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Description Text */
.comprehensive_system_sect .land_tit_wrap .txt {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
}



.comprehensive_system_sect .swiper-slide {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Static Zigzag Effect (Robust with Class) */
/* Even items (Low) */
.comprehensive_system_sect .swiper-slide.even-slide {
    transform: translateY(60px);
}

.comprehensive_system_sect .swiper-slide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.comprehensive_system_sect .img {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.comprehensive_system_sect .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.comprehensive_system_sect .txt_box {
    padding: 35px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.comprehensive_system_sect .txt_head {
    display: flex;
    align-items: center;
    gap: 15px;
}


.comprehensive_system_sect .tit {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    word-break: keep-all;
    line-height: 1.3;
}

.comprehensive_system_sect .txt {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    line-height: 1.6;
    opacity: 0.8;
    word-break: keep-all;
    margin-bottom: auto;
    /* Push to bottom if needed, or structured flow */
}

/* Responsive */
@media (max-width: 1024px) {
    .comprehensive_system_sect {
        padding: 80px 0;
    }

    .comprehensive_system_sect .swiper-slide {
        width: 280px;
    }

    .comprehensive_system_sect .tit {
        font-size: 18px;
    }
}

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

    .comprehensive_system_sect .land_tit_wrap {
        margin-bottom: 40px;
    }

    .comprehensive_system_sect .land_tit_wrap .desc {
        font-size: 14px;
    }

    .comprehensive_system_sect .land_tit_wrap .tit {
        font-size: 26px;
    }

    .comprehensive_system_sect .land_tit_wrap .txt {
        font-size: 14px;
        word-break: keep-all;
    }

    .comprehensive_system_sect .slide_cont {
        padding-left: 20px;
    }

    .comprehensive_system_sect .swiper-slide {
        width: 260px;
        margin-right: 15px;
    }

    .comprehensive_system_sect .img {
        height: 160px;
    }

    .comprehensive_system_sect .txt_box {
        padding: 20px;
    }

    /* Remove Zigzag on Mobile */
    .comprehensive_system_sect .swiper-slide.even-slide {
        margin-top: 0;
        transform: none !important;
    }

    .comprehensive_system_sect .swiper-slide:hover {
        transform: translateY(-5px);
    }
}

/* ==================== 호흡기 질환 원인 섹션 ==================== */
.respiratory_causes_sect {
    padding: 180px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.respiratory_causes_sect .inner {
    padding: 0 2rem;
}

.cause_wrap {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.cause_wrap .tit_box {
    width: 35%;
    flex-shrink: 0;
}

.cause_wrap .tit_box .tit {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1c1c1c;
    line-height: 1.2;
}

.cause_wrap .tit_box .desc p {
    font-size: 18px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 500;
}

.cause_wrap .list_box {
    width: 60%;
    flex-grow: 1;
}

.cause_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cause_list li {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 24px 30px;
    border-radius: 12px;
}

.cause_list li .icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cause_list li .icon svg {
    width: 100%;
    height: 100%;
}

.cause_list li .txt {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 1200px) {
    .cause_wrap {
        gap: 50px;
    }

    .cause_wrap .tit_box .tit {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .respiratory_causes_sect {
        padding: 80px 0;
    }

    .cause_wrap {
        flex-direction: column;
        gap: 40px;
    }

    .cause_wrap .tit_box,
    .cause_wrap .list_box {
        width: 100%;
    }
}

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

    .cause_wrap .tit_box .tit {
        font-size: 28px;
    }

    .cause_wrap .tit_box .desc p {
        font-size: 15px;
    }

    .cause_list {
        grid-template-columns: 1fr;
    }

    .cause_list li {
        padding: 16px 20px;
    }

    .cause_list li .txt {
        font-size: 16px;
    }
}

/* ==================== 내분비·대사질환 원인 섹션 ==================== */
.endocrine_causes_sect {
    padding: 180px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.endocrine_causes_sect.rheuma_causes {
    padding: 0;
    padding-top: 80px;
}

.custom_sol_sect.rheuma_sol {
    padding: 0;
}

.intro_desc_sect.rheuma_intro {
    padding-bottom: 180px;
}


/* .cause_wrap, .tit_box, .list_box share styles with respiratory section */

.cause_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    row-gap: 40px;
}

.cause_grid .item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cause_grid .thumb {
    width: 100%;
    aspect-ratio: 1.5;
    /* 3:2 ratio */
    border-radius: 20px 20Px 0 0;
    overflow: hidden;
    position: relative;
}

.cause_grid .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cause_grid .name_box {
    background: #f3f4f6;
    border-radius: 0 0 20px 20px;
    padding: 16px 0;
    text-align: center;
    transition: background 0.3s ease;
}


.cause_grid .name {
    font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
}

.intro_desc_sect.endo_intro {
    padding-bottom: 180px;
}

@media (max-width: 1024px) {
    .endocrine_causes_sect {
        padding: 100px 0;
    }

    .cause_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        row-gap: 30px;
    }
}

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

    .cause_grid {
        gap: 12px;
        row-gap: 24px;
    }

    .cause_grid .name {
        font-size: 16px;
    }

    .cause_grid .name_box {
        padding: 12px 0;
    }
}

/* ==================== 류마티스 관절염이란? 섹션 ==================== */
.rheuma_about_sect {
    padding: 180px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.rheuma_about_sect .inner {
    padding: 0 20px;
}

.about_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.about_wrap .txt_box {
    width: 70%;
    word-break: keep-all;
}

.about_wrap .txt_box .tit {
    font-size: 44px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 40px;
    line-height: 1.5;
}

.about_wrap .txt_box .desc p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 500;
}

.about_wrap .txt_box .desc p:last-child {
    margin-bottom: 0;
}

.about_wrap .img_box {
    width: 50%;
}

.about_wrap .img_box .img {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.about_wrap .img_box img {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .rheuma_about_sect {
        padding: 100px 0;
    }

    .about_wrap {
        flex-direction: column;
        gap: 50px;
    }

    .about_wrap .txt_box,
    .about_wrap .img_box {
        width: 100%;
    }

    .about_wrap .txt_box .tit {
        text-align: center;
        margin-bottom: 30px;
    }

    .about_wrap .txt_box .desc {
        text-align: left;
        /* Keep text left aligned for readability or center if preferred */
    }
}

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

    .about_wrap .txt_box .tit {
        font-size: 32px;
    }

    .about_wrap .txt_box .desc p {
        font-size: 16px;
    }
}

/* ==================== 류마티스 관절염이란? 섹션 애니메이션 ==================== */
.rheuma_about_sect .txt_box {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rheuma_about_sect .img_box {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
}

.rheuma_about_sect.active .txt_box {
    opacity: 1;
    transform: translateY(0);
}

.rheuma_about_sect.active .img_box {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 내분비/류마티스 원인 섹션 애니메이션 ==================== */
.endocrine_causes_sect .tit_box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.endocrine_causes_sect .item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Staggered delay for items */
.endocrine_causes_sect .item:nth-child(1) {
    transition-delay: 0.2s;
}

.endocrine_causes_sect .item:nth-child(2) {
    transition-delay: 0.3s;
}

.endocrine_causes_sect .item:nth-child(3) {
    transition-delay: 0.4s;
}

.endocrine_causes_sect .item:nth-child(4) {
    transition-delay: 0.5s;
}

.endocrine_causes_sect .item:nth-child(5) {
    transition-delay: 0.6s;
}

.endocrine_causes_sect .item:nth-child(6) {
    transition-delay: 0.7s;
}

/* Active State */
.endocrine_causes_sect.active .tit_box {
    opacity: 1;
    transform: translateY(0);
}

.endocrine_causes_sect.active .item {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 호흡기 질환 원인 섹션 애니메이션 (If needed) ==================== */
.respiratory_causes_sect .tit_box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.respiratory_causes_sect li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.respiratory_causes_sect li:nth-child(1) {
    transition-delay: 0.2s;
}

.respiratory_causes_sect li:nth-child(2) {
    transition-delay: 0.3s;
}

.respiratory_causes_sect li:nth-child(3) {
    transition-delay: 0.4s;
}

.respiratory_causes_sect li:nth-child(4) {
    transition-delay: 0.5s;
}

.respiratory_causes_sect li:nth-child(5) {
    transition-delay: 0.6s;
}

.respiratory_causes_sect li:nth-child(6) {
    transition-delay: 0.7s;
}

.respiratory_causes_sect.active .tit_box {
    opacity: 1;
    transform: translateY(0);
}

.respiratory_causes_sect.active li {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 진료안내/위치 인트로 섹션 ==================== */
.location_intro_sect {
    padding: 0 0 180px;
    background: #fff;
}

.location_intro_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.location_intro_sect .tit_wrap {
    text-align: left;
}

.location_intro_sect .tit {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.5;
    margin-bottom: 20px;

}

.location_intro_sect .desc {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    line-height: 1.8;
    font-weight: 450;
    opacity: 0.7;
}

/* Animation Trigger Init */
.location_intro_sect .tit_wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.location_intro_sect .tit_wrap.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .location_intro_sect {
        padding: 120px 0 80px;
    }
}

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

    .location_intro_sect .tit {
        font-size: 32px !important;
        /* Mobile override if needed, or rely on calc */
        margin-bottom: 20px;
    }

    .location_intro_sect .desc {
        font-size: 16px !important;
    }
}

/* ==================== 진료시간 안내 섹션 ==================== */
.time_info_sect {
    padding: 0 0 180px;
    background: #fff;
}

.time_info_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.time_info_sect .sect_tit {
    font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 40px;
}

.time_info_sect .time_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.time_info_sect .time_box {
    background-color: #F6F8FB;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.time_info_sect .time_box .label {
    font-size: calc(var(--font-size-23) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 15px;
}

.time_info_sect .time_box .time {
    font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1B45A8;
    line-height: 1.2;
}

.time_info_sect .time_box .note_chip {
    margin-top: 5px;
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
    font-weight: 600;
    color: #1c1c1c;

}

.time_info_sect .bottom_note {
    font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
    color: #1c1c1c;
    opacity: 0.7;
    margin-top: 20px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .time_info_sect {
        padding-bottom: 120px;
    }

    .time_info_sect .time_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .time_info_sect .time_box {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .time_info_sect {
        padding-bottom: 100px;
    }

    .time_info_sect .sect_tit {
        font-size: 32px !important;
    }

    .time_info_sect .time_box .time {
        font-size: 36px !important;
    }
}

/* ==================== 오시는 길 섹션 ==================== */
.coming_way_sect {
    padding: 0 0 180px;
    background: #fff;
}

.coming_way_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.coming_way_sect .sect_tit {
    font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 40px;
}

.coming_way_sect .map_container {
    width: 100%;
    height: 600px;
    background-color: #f0f0f0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* 네이버 지도 로고 등이 둥근 모서리 밖으로 나가지 않도록 */
}

/* 지도 하단 정보 (주소 + 버튼) */
.coming_way_sect .info_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.coming_way_sect .address_box {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    word-break: keep-all;
}

.coming_way_sect .map_btn_group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coming_way_sect .map_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 1px solid #CCD2DD;
    /* 푸터 테두리 색상 참고 */
    border-radius: 50px;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 138px;
    justify-content: center;
}

.coming_way_sect .map_btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.coming_way_sect .map_btn img {
    width: 20px;
    height: 20px;
    display: block;
}

.coming_way_sect .map_btn span {
    font-size: calc(var(--font-size-15) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
}

@media (max-width: 1024px) {
    .coming_way_sect {
        padding-bottom: 120px;
    }

    .coming_way_sect .map_container {
        height: 450px;
    }

    .coming_way_sect .info_bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .coming_way_sect .map_btn_group {
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }

    .coming_way_sect .map_btn {
        flex: 1;
        justify-content: center;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .coming_way_sect {
        padding-bottom: 100px;
    }

    .coming_way_sect .sect_tit {
        font-size: 32px !important;
    }

    .coming_way_sect .map_container {
        height: 350px;
        border-radius: 20px;
    }

    .coming_way_sect .address_box {
        font-size: 20px !important;
    }

    .coming_way_sect .map_btn_group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== 교통안내 섹션 ==================== */
.transport_info_sect {
    padding: 0 0 180px;
    background: #fff;
}

.transport_info_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.transport_info_sect .sect_left {
    flex: 0 0 300px;
}

.transport_info_sect .sect_right {
    flex: 1;
    border-top: 1px solid #CCD2DD;
    /* 상단 굵은 라인 */
}

.transport_info_sect .sect_tit {
    font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
}

.transport_info_sect .transport_item {
    padding: 50px 0;
    border-bottom: 1px solid #CCD2DD;
    /* 하단 회색 라인 */
}



.transport_info_sect .sub_tit {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 20px;
}

.transport_info_sect .content_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.transport_info_sect .text {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    font-weight: 450;
}

/* 주차장 아이콘 */
.transport_info_sect .icon_p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

/* 지하철 뱃지 */
.transport_info_sect .badges {
    display: flex;
    gap: 8px;
}

.transport_info_sect .badge {
    display: inline-block;
    padding: 2px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.transport_info_sect .badge.line_1 {
    background-color: #0052A4;
}

.transport_info_sect .badge.line_2 {
    background-color: #00A84D;
}

.transport_info_sect .badge.line_ui {
    background-color: #B0CE18;
}

/* 버스 내용 */
.transport_info_sect .desc_text {
    font-size: calc(var(--font-size-18) * var(--font-scale)) !important;
    color: #1c1c1c;
    margin-bottom: 20px;
    font-weight: 500;
}

.transport_info_sect .bus_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport_info_sect .bus_list li {
    display: flex;
    align-items: flex-start;
    /* 텍스트가 길어질 경우 상단 정렬 */
    gap: 15px;
    margin-bottom: 15px;
}

.transport_info_sect .bus_list li:last-child {
    margin-bottom: 0;
}

.transport_info_sect .badge.bus_blue {
    background-color: #3d8bf2;
}

/* 간선 */
.transport_info_sect .badge.bus_green {
    background-color: #5BB025;
}

/* 지선 */
.transport_info_sect .badge.bus_red {
    background-color: #FF0000;
}

/* 광역 */


@media (max-width: 1024px) {
    .transport_info_sect .inner {
        flex-direction: column;
        gap: 30px;
    }

    .transport_info_sect .sect_left {
        flex: auto;
    }
}

@media (max-width: 768px) {
    .transport_info_sect {
        padding-bottom: 100px;
    }

    .transport_info_sect .sect_tit {
        font-size: 32px !important;
    }

    .transport_info_sect .sub_tit {
        font-size: 20px !important;
    }

    .transport_info_sect .content_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==================== 애니메이션 적용 ==================== */

/* 진료시간 섹션 애니메이션 */
.time_info_sect .time_box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.time_info_sect .time_grid.active .time_box {
    opacity: 1;
    transform: translateY(0);
}

.time_info_sect .time_box:nth-child(1) {
    transition-delay: 0.1s;
}

.time_info_sect .time_box:nth-child(2) {
    transition-delay: 0.3s;
}

.time_info_sect .time_box:nth-child(3) {
    transition-delay: 0.5s;
}

/* 교통안내 섹션 애니메이션 */
.transport_info_sect .transport_item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.transport_info_sect .sect_right.active .transport_item {
    opacity: 1;
    transform: translateY(0);
}

.transport_info_sect .transport_item:nth-child(1) {
    transition-delay: 0.1s;
}

.transport_info_sect .transport_item:nth-child(2) {
    transition-delay: 0.3s;
}

.transport_info_sect .transport_item:nth-child(3) {
    transition-delay: 0.5s;
}

/* Vaccine List Section */
.vaccine_list_sect {
    padding: 180px 0 0;
}

.vaccine_list_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.vaccine_list_sect .sect-header {
    margin-bottom: 60px;
}

.vaccine_list_sect .sub-tit {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.vaccine_list_sect .sect-header .tit {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.vaccine_list_sect .sect-header .desc {
    font-size: 16px;
    color: #666;
}

.vaccine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vaccine-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.vaccine_list_sect.active .vaccine-item {
    opacity: 1;
    transform: translateY(0);
}

.vaccine_list_sect.active .vaccine-item:nth-child(1) {
    transition-delay: 0.1s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(2) {
    transition-delay: 0.2s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(3) {
    transition-delay: 0.3s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(4) {
    transition-delay: 0.4s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(5) {
    transition-delay: 0.5s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(6) {
    transition-delay: 0.6s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(7) {
    transition-delay: 0.7s;
}

.vaccine_list_sect.active .vaccine-item:nth-child(8) {
    transition-delay: 0.8s;
}

.vaccine-item .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.vaccine-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vaccine-item:hover .img-box img {
    transform: scale(1.05);
}

.vaccine-item .v-tit {
    font-size: calc(var(--font-size-32) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.vaccine-item .v-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
    margin-bottom: 40px
}

@media (max-width: 1200px) {
    .vaccine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .vaccine_list_sect .sect-header .tit {
        font-size: 32px;
    }
}

@media (max-width: 500px) {
    .vaccine-grid {
        grid-template-columns: 1fr;
    }
}

/* Polypectomy Info Section */
.polypectomy_info_sect {
    padding: 100px 0;
}

.polypectomy_info_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.polypectomy_info_sect .info-header {
    margin-bottom: 60px;
}

.polypectomy_info_sect .tit {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.polypectomy_info_sect .desc {
    font-size: 18px;
    color: #1c1c1c;
    line-height: 1.8;
    opacity: 0.7
}

.polypectomy_info_sect .info-content {
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

.polypectomy_info_sect .img-area {
    flex: 0.7;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.polypectomy_info_sect .img-box {
    width: 100%;
    aspect-ratio: 4 / 2.5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
    /* Default bg */
}

.polypectomy_info_sect .img-box img.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.polypectomy_info_sect .img-box img.step-img.active {
    opacity: 1;
    z-index: 2;
}

.polypectomy_info_sect .txt-area {
    flex: 1;
    padding-top: 300px;
}

.polypectomy_info_sect .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 120px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.polypectomy_info_sect .info-item.active {
    opacity: 1;
}

.polypectomy_info_sect .info-item:last-child {
    margin-bottom: 0;
}

.polypectomy_info_sect .num-box {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #1c1c1c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.polypectomy_info_sect .i-tit {
    font-size: calc(var(--font-size-28) * var(--font-scale)) !important;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1c1c1c;
}

.polypectomy_info_sect .i-desc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.polypectomy_info_sect .i-desc li {
    font-size: 16px;
    color: #1c1c1c;
    line-height: 1.8;
    position: relative;
    padding-left: 12px;
    margin-bottom: 6px;
    opacity: 0.7;
    word-break: keep-all;
}

.polypectomy_info_sect .i-desc li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .polypectomy_info_sect .info-content {
        flex-direction: column;
        gap: 40px;
    }

    .polypectomy_info_sect .img-area {
        position: static;
        width: 100%;
    }

    .polypectomy_info_sect .txt-area {
        padding-top: 0;
    }
}

/* ==================== 건강검진 표 섹션 ==================== */
.checkup_table_sect {
    padding: 100px 0;
}

.checkup_table_sect .inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkup_table_sect .main-tit-wrap {
    margin-bottom: 80px;
}

.checkup_table_sect .main-tit-wrap .tit {
    font-size: calc(var(--font-size-52) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
}

.checkup_table_sect .checkup-unit {
    margin-bottom: 160px;
}

.checkup_table_sect .checkup-unit:last-child {
    margin-bottom: 0;
}

.checkup_table_sect .sec-tit-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.checkup_table_sect .sec-tit-num {
    font-size: 30px;
    font-weight: 700;
    color: #1B45A8;
    /* Theme Blue */
    opacity: 0.5;
}

.checkup_table_sect .sec-tit {
    font-size: calc(var(--font-size-40) * var(--font-scale)) !important;
    font-weight: 700;
    color: #1c1c1c;
}

.checkup_table_sect .sec-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.checkup_table_sect .tbl-wrap {
    overflow-x: auto;
    border-top: 2px solid #1c1c1c;
}

.checkup_table_sect table {
    width: 100%;
    min-width: 800px;
    /* Prevent breaking on mobile */
    border-collapse: collapse;
    table-layout: fixed;
    /* Optional, helps with width control */
}

.checkup_table_sect th,
.checkup_table_sect td {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    word-break: keep-all;
}

.checkup_table_sect th:last-child,
.checkup_table_sect td:last-child {
    border-right: none;
}

.checkup_table_sect th {
    background-color: #f9f9f9;
    font-weight: 700;
    font-size: calc(var(--font-size-20) * var(--font-scale)) !important;
    color: #1c1c1c;
}

.checkup_table_sect td.left {
    text-align: left;
    padding-left: 30px;
}

.checkup_table_sect .cat-col {
    background-color: #fcfcfc;
    font-weight: 700;
    color: #1c1c1c;
}

/* Checkup Table Section Animations */
.checkup_table_sect .main-tit-wrap,
.checkup_table_sect .checkup-unit {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.checkup_table_sect.active .main-tit-wrap {
    opacity: 1;
    transform: translateY(0);
}

.checkup_table_sect.active .checkup-unit {
    opacity: 1;
    transform: translateY(0);
}

.checkup_table_sect.active .checkup-unit:nth-of-type(1) {
    transition-delay: 0.2s;
}

.checkup_table_sect.active .checkup-unit:nth-of-type(2) {
    transition-delay: 0.4s;
}

.checkup_table_sect.active .checkup-unit:nth-of-type(3) {
    transition-delay: 0.6s;
}

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

    .checkup_table_sect .sec-tit-num,
    .checkup_table_sect .sec-tit {
        font-size: 24px;
    }

    .checkup_table_sect th,
    .checkup_table_sect td {
        padding: 15px 10px;
        font-size: 14px;
    }
}