:root {
    --primary: #0e52ac;
    --secondary: #1a1a2e;
    --text: #333;
    --light: #f8f8f8;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; }
body { font-family: 'Pretendard', 'Noto Sans KR', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   Header
   ============================================= */
#header {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    z-index: 2000; transition: all 0.3s;
    display: flex; align-items: center;
    background: transparent;
}

/* 스크롤 시 헤더 스타일 변경 */
#header.scrolled { 
    background: var(--white); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    height: 70px; 
}
#header.scrolled .logo a, #header.scrolled .gnb ul li a { 
    color: var(--text); 
}
#header.scrolled .menu-btn span { 
    background: var(--text); 
}

.header-inner {
    width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo a { 
    font-size: 28px; font-weight: 800; color: var(--white); 
    letter-spacing: 2px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.gnb ul { display: flex; gap: 40px; }
.gnb ul li { position: relative; white-space: nowrap; }
.gnb ul li a { 
    font-size: 17px; font-weight: 500; color: var(--white); 
    transition: color 0.3s; display: block; padding: 10px 0; 
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.gnb ul li a:hover { color: var(--primary); }

/* Dropdown Submenu */
.gnb .submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2100;
    min-width: 160px;
    padding: 0;
    list-style: none;
    border-top: 3px solid var(--primary);
    display: block;
}
.gnb ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.gnb .submenu li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}
.gnb .submenu li:last-child { border-bottom: none; }
.gnb .submenu li a {
    display: block;
    padding: 8px 20px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: center;
}
.gnb .submenu li a:hover {
    background: var(--light);
    color: var(--primary);
}

/* Menu Button */
.menu-btn {
    width: 30px; height: 22px; position: fixed; right: 20px; top: 29px; cursor: pointer; z-index: 2200;
}
#header.scrolled .menu-btn { top: 19px; }
#header.scrolled .menu-btn span { background: var(--secondary); }
body.act-all-menu .menu-btn span { background: var(--secondary) !important; }
.menu-btn span {
    display: block; position: absolute; height: 2px; width: 100%;
    background: var(--white); border-radius: 2px; transition: .25s ease-in-out;
}
.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 10px; }
.menu-btn span:nth-child(3) { top: 20px; }

.menu-btn.act span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.menu-btn.act span:nth-child(2) { opacity: 0; }
.menu-btn.act span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

/* =============================================
   All Menu Overlay
   ============================================= */
.all-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--light); z-index: 1900; display: flex;
    visibility: hidden; opacity: 0; transition: all 0.5s;
    pointer-events: none;
}
.all-menu.act { visibility: visible; opacity: 1; pointer-events: auto; }
body.act-all-menu #header .logo, 
body.act-all-menu #header .gnb { opacity: 0; visibility: hidden; transition: all 0.3s; }
.all-left { width: 40%; background: var(--secondary) url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1000&q=80') center/cover; position: relative; }
.all-left::after { content: ''; position: absolute; inset: 0; background: rgba(14, 82, 172, 0.7); }
.all-right { width: 60%; display: flex; align-items: center; padding: 0 10%; }

.full-gnb > li { margin-bottom: 40px; }
.full-gnb > li > a { font-size: 32px; font-weight: 700; color: var(--secondary); display: block; margin-bottom: 15px; }
.full-gnb .sub { display: flex; gap: 20px; flex-wrap: wrap; }
.full-gnb .sub li a { font-size: 16px; color: #666; transition: color 0.3s; }
.full-gnb .sub li a:hover { color: var(--primary); }

/* =============================================
   Sub Page Layout
   ============================================= */
.sub-page {
    /* 헤더가 고정이므로 마진 제거 - 배너가 최상단부터 시작 */
}

/* Sub Banner */
.sub-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}
.sub-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}
.sub-banner-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}
.sub-banner-inner h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sub-banner-inner p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}
.sub-banner-desc {
    font-size: 16px;
    font-weight: 300;
}

/* LNB (Left Navigation Bar) */
.lnb {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}
.lnb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.lnb ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.lnb ul li {
    position: relative;
}
.lnb ul li.home a {
    font-size: 18px;
    color: var(--primary);
}
.lnb ul li.has-sub > a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 0;
}
.lnb ul li.has-sub > a:hover {
    color: var(--primary);
}
.lnb ul li.has-sub > a i {
    font-size: 12px;
    transition: transform 0.3s;
}
.lnb ul li.has-sub.open > a i {
    transform: rotate(180deg);
}

.lnb .lnb-sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
    margin-top: 8px;
}
.lnb .lnb-sub li {
    border-bottom: 1px solid #f0f0f0;
}
.lnb .lnb-sub li:last-child {
    border-bottom: none;
}
.lnb .lnb-sub li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text);
    transition: all 0.2s;
}
.lnb .lnb-sub li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 20px;
}

/* Content Area */
.content-area {
    padding: 60px 0;
    background: var(--white);
}
.content-area .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-header {
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 20px;
}
.content-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

/* Greeting Section */
.greeting-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.greeting-text {
    padding-right: 30px;
}
.greeting-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}
.greeting-text h4 span {
    color: var(--primary);
    display: block;
    margin-top: 10px;
}
.text-box {
    margin-bottom: 30px;
}
.text-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}
.signature {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}
.signature p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
}
.signature p strong {
    font-weight: 700;
    letter-spacing: 2px;
}

.greeting-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.greeting-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* =============================================
   Sections
   ============================================= */
.section { position: relative; overflow: hidden; scroll-snap-align: start; scroll-snap-stop: always; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec-title { text-align: center; margin-bottom: 30px; }
.sec-title span { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.sec-title h3 { font-size: 36px; font-weight: 700; color: var(--secondary); }

/* Hero Slider */
.hero-slide { background-size: cover; background-position: center; height: 100vh; display: flex; align-items: center; position: relative; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero-content { position: relative; z-index: 10; color: var(--white); max-width: 1200px; margin: 0 auto; padding: 0 40px; width: 100%; }
.hero-content .num { font-size: 20px; margin-bottom: 20px; }
.hero-content h2 { font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.hero-content .brand-name { font-size: 80px; font-weight: 800; line-height: 1; margin-bottom: 40px; }
.hero-content .m-highlight { color: var(--primary); }
.btn-more { display: inline-block; padding: 15px 40px; border: 1px solid var(--white); color: var(--white); font-weight: 600; transition: all 0.3s; }
.btn-more:hover { background: var(--white); color: var(--primary); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { position: relative; height: 400px; overflow: hidden; cursor: pointer; border-radius: 10px; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: var(--white); transition: background 0.3s; }
.service-card:hover img { transform: scale(1.1); }
.service-card:hover .service-overlay { background: rgba(14, 82, 172, 0.8); }
.service-overlay h4 { font-size: 22px; margin-bottom: 10px; }
.service-overlay p { font-size: 14px; opacity: 0.8; }

/* =============================================
   Branch Section (Interactive)
   ============================================= */
.section-branches { background: #f4f7fa; padding: 60px 0; }
.branch-content { display: flex; gap: 60px; align-items: stretch; }
.branch-map { flex: 1; background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: center; }
.map-container { position: relative; width: 100%; aspect-ratio: 1; }
.map-container svg { width: 100%; height: 100%; }

.area-btn {
    position: absolute; padding: 8px 14px; background: var(--white); border: 2px solid var(--primary);
    border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s;
    color: var(--primary); transform: translate(-50%, -50%);
}
.area-btn:hover { background: var(--primary); color: var(--white); transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 5px 15px rgba(14,82,172,0.4); }
.area-btn.active { background: var(--primary); color: var(--white); box-shadow: 0 5px 15px rgba(14,82,172,0.4); }

/* 지도 위 버튼 위치 (SVG 좌표 기반 - 백분율) */
.btn-seoul { top: 23%; left: 52%; }
.btn-incheon { top: 25%; left: 38%; }
.btn-gyeonggi { top: 35%; left: 50%; }
.btn-gangwon { top: 20%; left: 65%; }
.btn-chungbuk { top: 42%; left: 58%; }
.btn-chungnam { top: 52%; left: 45%; }
.btn-daejeon { top: 50%; left: 50%; }
.btn-gyeongbuk { top: 48%; left: 72%; }
.btn-daegu { top: 53%; left: 72%; }
.btn-gyeongnam { top: 70%; left: 68%; }
.btn-busan { top: 70%; left: 78%; }
.btn-ulsan { top: 63%; left: 75%; }
.btn-jeonbuk { top: 62%; left: 38%; }
.btn-jeonnam { top: 78%; left: 35%; }
.btn-gwangju { top: 72%; left: 38%; }
.btn-jeju { top: 88%; left: 38%; }

.branch-info { flex: 1; }
.branch-detail {
    display: none; background: var(--white); padding: 40px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); animation: fadeInUp 0.5s forwards;
}
.branch-detail.active { display: block; }
.branch-detail h4 { font-size: 28px; color: var(--primary); margin-bottom: 20px; border-bottom: 2px solid var(--light); padding-bottom: 10px; }
.info-list li { margin-bottom: 15px; display: flex; }
.info-list li strong { width: 100px; color: #888; font-weight: 500; }
.info-list li span { flex: 1; color: var(--secondary); font-weight: 600; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* fullPage.js 워터마크 제거 */
.fp-watermark { display: none !important; }

/* =============================================
   Footer
   ============================================= */
#footer { background: var(--secondary); color: rgba(255,255,255,0.6); padding: 40px 0; display: flex; align-items: center; position: relative; z-index: 10; min-height: auto !important; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.f-logo { font-size: 24px; font-weight: 800; color: var(--white); }
.f-info p { font-size: 14px; margin-bottom: 5px; }
.f-links a { margin-left: 20px; font-size: 14px; color: var(--white); }

/* =============================================
   Mobile Responsive
   ============================================= */
@media (max-width: 1024px) {
    #header { height: 60px; }
    .gnb { display: none; }
    .hero-content .brand-name { font-size: 50px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .branch-content { flex-direction: column; }
    .all-left { display: none; }
    .all-right { width: 100%; padding: 100px 40px; }
    .greeting-wrap { grid-template-columns: 1fr; gap: 40px; }
    .greeting-text { padding-right: 0; }
}

@media (max-width: 768px) {
    .sec-title h3 { font-size: 28px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-card { height: 250px; }
    .service-overlay { padding: 15px; }
    .service-overlay h4 { font-size: 18px; }
    .service-overlay p { font-size: 12px; }
    .hero-content .brand-name { font-size: 40px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 30px; }
    .f-links a { margin: 0 10px; }
    .branch-map { padding: 20px; }
    .area-btn { padding: 5px 10px; font-size: 11px; }
    .greeting-text h4 { font-size: 20px; }
    .text-box p { font-size: 14px; }
    .lnb ul { flex-direction: column; gap: 10px; }
}








/****************
	Sub - 레이아웃
****************/
.location {padding:10px 0}
.location span {display:inline-block; font-size:12px; color:#666}
.location span i {margin-right:3px; font-size:13px;}
.location span.arrow {font-size:11px; font-family:돋움,Dotum,arial,sans-serif; padding:0 3px; color:#ddd}
.location span.page {color:#004b72}

.sub_contents_bg {background: url(../images/sub_bg.png) repeat; padding: 40px 0 0;}
.sub_contents_bg .title {font-size: 28px; color: #fff; font-weight:bold; margin-bottom: 15px;}
.sub_contents_bg p {font-size:13px; color:#fff; margin-bottom:35px}

ul.sub_menu {width:100%; display:inline-block; margin:0; padding:0; float:left;}
ul.sub_menu li {width:16%; height:50px; line-height:50px; float:left; border-right:1px solid #eaeaea; text-align:center;}
ul.sub_menu li:last-child {border-right:none;}
ul.sub_menu li:hover {background:#f8f8f8}
ul.sub_menu li a {display:block; font-size:15px; color:#999; font-weight:bold; background:#f2f2f2; transition: 0.5s; -webkit-transition: 0.5s; -o-transition: 0.5s; text-decoration:none !important}
ul.sub_menu li a:hover {background:#f8f8f8; text-decoration:none;}
ul.sub_menu li.active a {color:#fff; background:#004b72; }

.sub_contents {padding:50px 0}
.sub_contents .pageTitle {font-size:32px; color:#000; margin-bottom:30px;}
.sub_contents p {font-size:14px; color:#666;}
.sub_contents .dotTitle {font-size:18px; color:#333; font-weight:bold; padding-left:23px; position:relative; margin-bottom:10px;}
.sub_contents .dotTitle:after {
	content: "";
    width: 16px;
    height: 16px;
    border: 4px solid #004b72;
    position: absolute;
    border-radius: 20px;
    left: 0;
    top: 4px;
}
.sub_contents .dotTitle_s {font-size:16px; color:#333; font-weight:bold; padding-left:18px; position:relative; margin-bottom:5px;}
.sub_contents .dotTitle_s:after {
	content: "";
    width: 12px;
    height: 12px;
    border: 3px solid #004b72;
    position: absolute;
    border-radius: 20px;
    left: 0;
    top: 4px;
}
.sub_contents .imgBox {position:relative;}
.sub_contents .imgBox .mask {background: rgba(0,0,0,0.2); position:absolute; width:100%; height:100%;}
.sub_contents .imgBox p {font-size:29px; font-weight:bold; color:#fff; padding:50px 0 0 40px; line-height:130%;}

.sub_contents .borderBox {border:1px solid #ddd; padding:30px;}


.sub_contents ul.tab_menu {width:100%; display:inline-block; border-right:1px solid #ddd; background: #eaeaea; padding:0; margin-bottom:15px;}
.sub_contents ul.tab_menu li {float:left; list-style: none;}
.sub_contents ul.tab_menu li a {display:block; border:1px solid #ddd; font-weight:bold; border-top:none; border-right:none; background:#eaeaea; padding:12px; color:#777; font-size:14px; letter-spacing:-0.03em; text-align:center;}
.sub_contents ul.tab_menu li.active a{background:#fff; border-color:#ddd; border-top:1px solid #ddd; border-bottom-color:#fff; color:#000;}
.sub_contents ul.division3 li {width:33.3333%;}
.sub_contents ul.division4 li {width:25%;}
.sub_contents ul.division5 li {width:20%;}


.sub_contents .page_title { padding: 42px 0px 45px; font-size: 36px; color: rgb(16, 39, 64); font-weight: 500; border-bottom: 1px solid rgb(221, 221, 221); box-sizing: border-box; }
.sub_contents .page_smtitle { font-size: 16px; font-weight: bold; color: rgb(89, 127, 151); }
.sub_contents h2 { font-size: 20px; font-weight: 500; margin-bottom: 12px; color: rgb(51, 51, 51); }
.sub_contents p { font-size: 16px; margin-bottom: 10px; line-height: 160%; }
.sub_contents ul.dot { margin: 0px; padding: 0px; }
.sub_contents ul.dot li { font-size: 16px; color: rgb(85, 85, 85); margin-bottom: 5px; padding-left: 12px; position: relative; }
.sub_contents ul.dot li::after { left: 0px; top: 10px; width: 3px; height: 3px; content: " "; position: absolute; background: rgb(96, 86, 77); }
.sub_contents .leftBox { width: 450px; margin-right: 30px; float: left; word-break: keep-all; }
.sub_contents .rightBox { width: 290px; float: left; }
.sub_contents .imgBox .mask { background: rgba(0, 0, 0, 0.2); width: 100%; height: 300px; }
.sub_contents .imgBox { margin-bottom: 30px; width: 100%; height: 300px; overflow: hidden; background-size: cover; background-position: center center; }
.sub_contents .imgBox p { font-size: 26px; font-weight: 500; color: rgb(255, 255, 255); padding: 70px 0px 0px 40px; line-height: 130%; }
.sub_contents .contentwrap { width: 100%; margin-top: 30px; }

.sub_contents p.b { content: ""; width: 28px; height: 3px; font-size: 21px; font-weight: bold; background:#004b72; word-break: keep-all; line-height: 140%; margin-top:30px; margin-bottom: 50px; }
.sub_contents p.b span { padding-top: 10px; width: 300px; display: inline-block; color:#000; }
.ss_tit {
    font-size: 20px;
    font-weight: bold;
    color:#004b72;
    margin-bottom: 10px;
}
.ss_box {
    border: 3px solid #ddd;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 160%;
    background:#f2f2f2;
}
.ss_sub_tit3 { margin-top:15px}
.ss_sub_tit3 b {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 2px solid #ccc;
    font-size: 17px;
    color:#004b72;
    margin-bottom: 10px;
}


@media (min-width: 992px) and (max-width: 1199px) {
	.sub_contents ul.tab_menu li a {letter-spacing: -0.15em;}
}
@media (max-width: 767px) {
	.sub_contents ul.tab_menu li {width:50% !important}
	.sub_contents ul.tab_menu li.w_100 {width:100% !important;}
	.sub_contents ul.tab_menu li a {font-size:12px; padding:5px}
	.sub_contents ul.tab_menu li.active a {border-bottom-color:#ddd}
	
}


@media (min-width: 768px) and (max-width:991px) {
	.sub_contents .borderBox {padding:20px}
}

@media (max-width:767px) {
	.location {padding:5px 0}
	
	.sub_contents_bg {padding:20px 0 0;}
	.sub_contents_bg .title {font-size:18px; margin-bottom:5px;}
	.sub_contents_bg p {margin-bottom:15px;}
	
	ul.sub_menu {background:#f2f2f2;}
	ul.sub_menu li {width:33.333333333%; height:35px; line-height:35px;}
	ul.sub_menu li:last-child {border-right:1px solid #eaeaea;}
	ul.sub_menu li:nth-child(3n) {border-right:none !important;}
	ul.sub_menu li a {font-size:13px;}
	
	.sub_contents {padding:20px 0 30px;}
	.sub_contents .pageTitle {font-size:20px; margin-bottom:15px;}
	.sub_contents .dotTitle {font-size:16px; padding-left:20px;}
	.sub_contents .dotTitle:after {width:14px; height:14px; top:4px;}
	.sub_contents .dotTitle_s {font-size:14px; padding-left:17px;}
	.sub_contents p {margin-bottom:10px;}
	.sub_contents .imgBox p {font-size:18px; padding:7% 0 0 15px;}
	
	.sub_contents .borderBox {padding:15px;}
}

ul.dot {margin:0; padding:0}
ul.dot li {font-size:14px; color:#555; margin-bottom:4px; padding-left:12px; position:relative;}
ul.dot li:after {
    left: 0;
    top: 9px;
    width: 3px;
    height: 3px;
    content: " ";
    position: absolute;
    background: #004b72;
}

.sub_contents .bigtitle {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2e51a9;
}


.table {width:100%; border-collapse:collapse; border-top:2px solid #6c7eaa; border-bottom:solid 1px #eaeaea; margin-top:3px;}
.table>tbody>tr>th  { color:#333; padding:12px 17px; border-bottom:solid 1px #eaeaea; border-right:dotted 1px #eaeaea;  font-weight:bold; text-align:center; background:#f4f4f4; line-height:170%;}
.table>tbody>tr>td  { color:#666; border-bottom:solid 1px #eaeaea; padding:12px 17px; line-height:170%; vertical-align:middle }
.table .left { text-align:left;}
.table .center { text-align:center;}
.table td A:link	{ color:#555;text-decoration:none; } 
.table td A:visited	{ color:#555;text-decoration:none; }
.table td A:active	{ color:#555;text-decoration:none; }
.table td A:hover	{ color:#0f71e0;text-decoration:none; }

.table th {font-weight:bold}
.table td {border-top:#eee 1px solid !important;}


@media (max-width:767px) {
	.table>tbody>tr>th, .table>tbody>tr>td {font-size:13px; padding:8px 12px; vertical-align:middle}
}


@media (max-width:767px) {
	.table .view {display:none;}
}


/****************
	Sub - 제품 레이아웃
****************/

/* 검색 */
.srch{float:left; width:100%; display:inline-block;}
.srch legend{overflow:hidden;visibility:hidden;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0}
.srch select{
    margin: 0;
    font-size: 13px;
    color: #373737;
    vertical-align: middle;
    height: 60px;
    border: #ddd solid 1px;
    outline: none;
    padding: 15px 20px;
    float: left;
    width: 20%;
	font-family: "Nanum Gothic", 나눔고딕, 돋움,Dotum,arial,sans-serif;
	border-radius:0 !important;
}
.srch .keyword{
    margin: 0;
    width: 70%;
    padding: 15px 20px;
    font-size: 13px;
    line-height: 15px;
    outline: none;
    vertical-align: top;
    height: 60px;
    float: left;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
	border-right: none;
	border-left:none;
	font-family: "Nanum Gothic", 나눔고딕, 돋움,Dotum,arial,sans-serif;
	border-radius:0 !important;
}
.srch button.searchBtn {
    height: 60px;
	width: 10%;
    float: left;
    background: #333;
    color: #fff;
    border-color: #333;
    font-size: 17px;
	min-width:inherit !important;
}
.srch button.searchBtn:hover {background:#004b72; border-color:#004b72;}

@media (max-width:1023px) {
    #header .gnb { display: none !important; }
    body.act-all-menu #header .logo { opacity: 0; visibility: hidden; }
}

@media (max-width:767px) {
	.srch select {width:27%; padding:10px 8px; height:40px;}
	.srch .keyword {width:56%; padding:10px; height:40px;}
	.srch button.searchBtn {width:17%; height:40px; padding:7px;}
	
}

.product_contents {background:#f3f3f3;}
.product_contents span.bold {font-weight:bold; margin-right:6px; color:#333}
.product_list{
	position:relative;
    width:100%;
    margin: 25px auto 0;
	padding:0;
}
.product_list .titleimg {padding:20px 0 10px 0}
.product_list .proBox {
	padding:30px;
	margin-bottom:20px;
	cursor:pointer; background:#fff;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;}
.product_list .proBox:hover {background-color:#004b72;}
.product_list .proBox .copy {float:left;}
.product_list .space {width:15px !important; float:left}
.product_list .proBox h3 {margin:5px 0 10px; clear:both; font-weight:bold; font-size:15px; color:#444; }
.product_list .proBox p {margin-bottom:0; line-height:19px;}
.product_list .proBox:hover h3, .product_list .proBox:hover p, .product_list .proBox:hover span.bold {color:#fff}
.product_list .proBox .hit i {margin-right:3px;}
.product_list .proBox .view, .product_list li .view .mask, .product_list li .view .content, .product_list li .view img {width:250px; height:170px}
.product_list .proBox .third-effect .mask {
   opacity: 0;
}
.product_list .proBox:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #0f71e0;
    transform: scale3d(0,1,1);
    transform-origin: center center;
    transition: transform .3s;
}

.product_detail {width:100%; display:inline-block; background:#fff; }
.product_detail .top {width:100%; display:inline-block;}
.product_detail .top .info {padding:15px 0; position:relative;}
.product_detail .top .info .title {font-size:27px; color:#333; font-weight:bold; margin-bottom:20px; padding-right:50px;}
.product_detail .top button.list-btn {position:absolute; right:0; top:0; width:50px; height:50px; min-width: inherit;}
.product_detail .top button.list-btn i {font-size:23px}

.product_detail .nav-tabs {width:100%; margin-top:30px;}
.product_detail .nav-tabs>li {width:20%; }
.product_detail .nav-tabs>li>a {border-color:#ddd; border-top:1px solid #ddd; padding:12px 10px 9px;border-radius:0;text-align:center; color:#888; font-weight:bold; font-size:16px; transition: 0.3s; -webkit-transition: 0.3s; -o-transition: 0.3s;}
.product_detail .nav>li>a:focus, .product_detail .nav>li>a:visited, .product_detail .nav>li>a:active {background-color:#fff;}
.product_detail .nav-tabs>li.active>a, .product_detail .nav-tabs>li.active>a:focus, .product_detail .nav-tabs>li.active>a:hover {border-top:2px solid #004b72; background:#fff; padding:11px 10px 9px; color:#222; border-radius:0; border-bottom-color:#fff;}
.product_detail .tab-content>.tab-pane {padding:30px 15px 15px;; width:100%; border-bottom:1px solid #ddd}


@media (max-width:1199px) {
	.product_list .proBox {padding:20px;}
	.product_detail {padding:20px;}
}
@media (max-width:991px) {
	.product_list .proBox {padding:15px;}
	.product_list .proBox h3 {margin-top:15px;}
	
	.product_detail {padding:15px;}
	.product_detail .top .info .title {font-size:18px; margin-bottom:10px; padding-right:30px;}
	.product_detail .top button.list-btn {padding:6px; width:30px; height:30px;}
	.product_detail .top button.list-btn i {font-size:14px}
}

@media (max-width:767px) {
	.product_list>.row {margin-right:-7px; margin-left:-7px;}
	.product_list>.row>[class^=col-] {padding-right:7px; padding-left:7px;}
	.product_detail .top button.list-btn {top:10px;}
	
	.product_detail .nav-tabs {margin-top:0}
	.product_detail .nav-tabs>li {width:35%}
	.product_detail .nav-tabs>li>a {font-size:14px; padding:10px 10px 7px;}
	.product_detail .nav-tabs>li.active>a, .product_detail .nav-tabs>li.active>a:focus, .product_detail .nav-tabs>li.active>a:hover {padding:9px 10px 7px;}
	.product_detail .tab-content>.tab-pane {padding:20px 10px 10px;}
}
.biztextbox p {background:#8ba1c9; padding:10px 20px; width:100%; color:#fff}




/*****************
	Sub - 게시판
*****************/

.board_list {width:100%; display:inline-block; margin:20px 0 0; padding:0}
.board_list li {padding:15px 20px; border: 1px solid #ddd; margin-bottom: 10px; cursor:pointer}
.board_list li:hover {border-color:#004b72}
.board_list li h3 {font-size: 18px; font-weight:normal; margin-bottom: 7px; color:#333; line-height:140%; padding-left:45px; position:relative;}
.board_list li:hover h3 {color:#004b72}
.board_list li p {display:inline-block; margin:0}
.board_list li .hit {float: right;}
.board_list li .hit i {margin-right:3px;}
.board_list .date {margin-left:45px}
.board_list .number {font-size: 16px; line-height:140%; font-weight:bold; display: inline-block; position:absolute; left:0;}

.board_detail {border: 1px solid #ddd; width:100%; display:inline-block;}
.board_detail .top {padding:35px 30px 25px; border-bottom:1px dotted #ddd; width:100%; float:left;}
.board_detail .top h3 {font-size: 18px; margin-bottom: 10px; color:#444; position:relative;}
.board_detail .top p {display:inline-block; margin:0}
.board_detail .top .hit {float: right;}
.board_detail .top .hit i {margin-right:3px;}
.board_detail .contents {width:100%; padding:30px; font-size:13px; line-height:20px;  float:left;}
.board_detail .bottom {margin-top:15px; width:100%; display:inline-block; float:left;}
.board_detail .bottom li {font-size:13px; color:#555; padding:15px 30px; border-top:1px dotted #ddd; cursor:pointer; width:100%; display:inline-block; float:left;}
.board_detail .bottom li:hover span.title {color:#004b72}
.board_detail .bottom li .left {float:left; width:10%;}
.board_detail .bottom li .right {float:left; width:90%;}
.board_detail .bottom li i {margin-right:5px; color:#004b72;}
.board_detail .bottom li span {float:left; display:inline-block;}

@media (min-width:768px) and (max-width:991px) {
	.board_list li {padding:20px;}
	.board_list li h3 {font-size: 16px;} 
	
	.board_detail .top {padding:25px 20px 15px}
	.board_detail .top h3 {font-size:16px;}
	.board_detail .contents {padding:20px;}
	
	.board_detail .bottom li {padding:12px 20px;}
	.board_detail .bottom li .left {width:15%;}
	.board_detail .bottom li .right {width:85%;}
}
@media (max-width:767px) {
	.board_list li {padding:15px;}
	.board_list li h3 {font-size: 14px; padding-left:35px;} 
	.board_list .date {margin-left:35px;}
	.board_list .number {font-size:14px;}	
	
	.board_detail .top {padding:20px 15px 10px}
	.board_detail .top h3 {font-size:14px;}
	.board_detail .contents {padding:15px;}
	
	.board_detail .bottom li {padding:10px 15px;}
	.board_detail .bottom li .left {width:23%;}
	.board_detail .bottom li .right {width:77%;}
	.board_detail .bottom li span.title {margin-left:10px;}
}


.sub_contents ul.tab_menu {width:100%; display:inline-block; border-right:1px solid #ddd; background: #eaeaea; padding:0; margin-bottom:15px;}
.sub_contents ul.tab_menu li {float:left; list-style: none;}
.sub_contents ul.tab_menu li a {display:block; border:1px solid #ddd; font-weight:bold; border-top:none; border-right:none; background:#eaeaea; padding:12px; color:#777; font-size:14px; letter-spacing:-0.03em; text-align:center;}
.sub_contents ul.tab_menu li.active a{background:#fff; border-color:#ddd; border-top:1px solid #ddd; border-bottom-color:#fff; color:#000;}
.sub_contents ul.division3 li {width:33.3333%;}
.sub_contents ul.division4 li {width:25%;}
.sub_contents ul.division5 li {width:20%;}


/* =============================================
   Branch Section (Interactive)
   ============================================= */
.section-faq { background: #f4f7fa; padding: 60px 0; }
.faq-content { display: flex; gap: 60px; align-items: stretch; }
.faq-q { flex: 1; background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: center; }
.q-container { position: relative; width: 100%; aspect-ratio: 1; }
.q-container svg { width: 100%; height: 100%; }

.area-btn {
    position: absolute; padding: 8px 14px; background: var(--white); border: 2px solid var(--primary);
    border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s;
    color: var(--primary); transform: translate(-50%, -50%);
}
.area-btn:hover { background: var(--primary); color: var(--white); transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 5px 15px rgba(14,82,172,0.4); }
.area-btn.active { background: var(--primary); color: var(--white); box-shadow: 0 5px 15px rgba(14,82,172,0.4); }


.faq-info { flex: 1; }
.faq-detail {
    display: none; background: var(--white); padding: 40px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); animation: fadeInUp 0.5s forwards;
}
.faq-detail.active { display: block; }
.faq-detail h4 { font-size: 28px; color: var(--primary); margin-bottom: 20px; border-bottom: 2px solid var(--light); padding-bottom: 10px; }
.info-list li { margin-bottom: 15px; display: flex; }
.info-list li strong { width: 100px; color: #888; font-weight: 500; }
.info-list li span { flex: 1; color: var(--secondary); font-weight: 600; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}