@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");


/* reset.css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    color: #000;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
a {color: inherit; text-decoration: none;}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
  font-family: "Noto Sans KR", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}



/* ===================================
   공덕(hubgongdeok) English Page
   ================================== */

/* Reset & Base Styles */

.en_inner {width: 100%; max-width: 1160px; margin: 0 auto;}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.page__gongdeok {
    --main-color: #ffc000;
}


.container {
    padding: 0 20px;
}


/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    max-width: 1159px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.logo a {
    display: block;
    width: 100%;
    max-width: 160px;
}

.logo a img {
    display: block;
    width: 100%;
}

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2563eb;
    background-color: #eff6ff;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    text-decoration: none;
    color: #64748b;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: #2563eb;
}

.lang-btn.active {
    color: #2563eb;
    font-weight: 600;
}

.lang-separator {
    color: #cbd5e1;
}

/* Hero Section */
/* .hero {
    background: linear-gradient(135deg, #667eea 0%, #dcb9ff 100%);
    color: white;
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
} */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content .hero-content_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content .visual_right {width: 100%; max-width: 590px; margin-right: 20px;}
.hero-content .visual_right img {display: block; width: 100%;}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* 공덕 영문 메인 */
.main__visual {
    margin-top: -70px;
    width: 100%;
    background: #000 url(../../../../../web/cportal/page__gongdeok/img/main/visual.png) 0 0 / cover no-repeat;
    padding-top: 233px;
    padding-bottom: 222px;
    letter-spacing: 0;
}

.main__visual .site__inner {width: 100%; max-width: 1280px; margin: 0 auto;}

.visual__tit {
    font-weight: 600;
    font-size: 4.875rem;
    line-height: 1.15;
    color: #fff;
}

.visual__tit .visual__titTop {
    display: block;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.visual__txt {
    font-size: 1.125rem;
    line-height: 1.55;
    color: #fff;
    font-weight: 200;
    margin-top: 29px;
}

.visual__btns {
    display: inline-block;
    border: 4px solid var(--main-color);
    border-radius: 13px;
    margin-top: 24px;
    overflow: hidden;
    padding: 0 14px;
}

.visual__btns li {
    float: left;
    font-weight: 200;
    font-size: 1.375rem;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    padding: 24px 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.visual__btns li:hover {
    color: var(--main-color);
}

.visual__btns li.download__btn {
    background: url(../../../../../web/cportal/page__gongdeok/img/main/ic_download.png) right 12px center / 25px 24px no-repeat;
    padding-right: calc(25px + 24px);
}

.visual__btns li.download__btn:hover {
    background: url(../../../../../web/cportal/page__gongdeok/img/main/ic_download_hover.png) right 12px center / 25px 24px no-repeat;
}

.visual__btns li.apply__btn {
    background: url(../../../../../web/cportal/page__gongdeok/img/main/ic_apply.png) right 12px center / 31px 26px no-repeat;
    padding-right: calc(31px + 24px);
}

.visual__btns li.apply__btn:hover {
    background: url(../../../../../web/cportal/page__gongdeok/img/main/ic_apply_hover.png) right 12px center / 31px 26px no-repeat;
}

/* @media (max-width: 1023px) {
    .main__visual {
        padding-top: 160px;
        padding-bottom: 150px;
    }
}
@media (max-width: 767px) {
    .main__visual {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .visual__tit .visual__titTop {
        margin-bottom: 10px;
    }

    .visual__txt {
        font-size: 15px;
        margin-top: 20px;
    }

    .visual__btns li[class*='btn'] {
        background-size: 15px auto;
        padding: 15px 12px;
        padding-right: calc(15px + 24px);
    }
} */



/* 스크롤 애니메이션 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin: 80px 0 50px;
}

.section-sub {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
} 

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}



.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}


.cta-button-wrapper {
    position: relative;
    display: inline-block;
    margin: 3rem 0;
}

.cta-main-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #667eea;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 60, 114, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-main-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 10px rgba(255, 255, 255, 0.1);
}

.cta-main-button:hover::before {
    left: 100%;
}

.cta-button-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-main-button:hover .cta-button-icon {
    transform: translateX(3px);
}

/* 부유하는 배경 요소들 */
.cta-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShape 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    bottom: 30%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    animation-delay: 4s;
}

.floating-shape:nth-child(4) {
    top: 40%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: white;
    transform: rotate(45deg);
    animation-delay: 1s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    75% { transform: translateY(15px) rotate(-3deg); }
}


footer {width: 100%; background: #fff; box-sizing: border-box; padding: 33px 0 53px; margin-top: 48px;}
footer .footer_inner {width: 100%; max-width: 1280px; margin: 0 auto;}
footer .footer_inner .footer_info {width: 100%; font-size: 14px; color: #C2C2C2;}
footer .footer_inner .footer_info li {line-height: 1.3;}

.about_box1 {width: 100%; display: flex; align-items: flex-start;}
.about_box1 > li {width: 33.333%;}
.about_box1 > li p.icon {display: block; width: 100%; max-width: 40px; margin: 0 auto;}
.about_box1 > li p.icon img {display: block; width: 100%;}
.about_box1 > li h4 {font-size: 22px; font-weight: 800; margin: 20px 0 12px; text-align: center;}
.about_box1 > li .content_text {width: 100%; font-size: 16px; color: #000; list-style: inside; display: block; max-width: 350px; margin: 0 auto; line-height: 1.3;}
.about_box1 > li .content_text > li {font-weight: normal; margin-bottom: 20px; box-sizing: border-box; padding-left: 20px; text-indent: -20px;}
.about_box1 > li .content_text > li:last-child {margin-bottom: 0;}

.keyFacilities {width: 100%; margin-top: 85px; background: #FBFBFB; box-sizing: border-box; padding: 40px 54px;}
.keyFacilities h2 {font-size: 34px; font-weight: 800; margin-bottom: 22px; text-align: center; width: 100%;}
.keyFacilities .sub_title {font-size: 18px; width: 100%; text-align: center;}
.keyFacilities .keyFacilities_content {width: 100%; margin-top: 33px;}
.keyFacilities .keyFacilities_content .box_title {font-size: 24px; font-weight: 800; margin-bottom: 26px;}
.keyFacilities .keyFacilities_content .box_s_title {font-size: 18px; font-weight: 500;}
.keyFacilities .keyFacilities_content .box_s_title span {font-size: 12px; vertical-align:top;}
.keyFacilities .keyFacilities_content .list {width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 20px; margin: 20px 0 30px;}
.keyFacilities .keyFacilities_content .list li {width: 100%; box-sizing: border-box; padding: 20px; background: #fff;}
.keyFacilities .keyFacilities_content .list li p.img {width: 100%; max-width: 310px;}
.keyFacilities .keyFacilities_content .list li p.img img {display: block; width: 100%;}
.keyFacilities .keyFacilities_content .list li span {display: block; font-size: 16px; text-align: center; margin-top: 6px; font-weight: 500;}

.hubTour {width: 100%; background: #1565C0; box-sizing: border-box; padding: 90px 55px;}
.hubTour h4 {font-size: 36px; font-weight: 600; color: #fff; margin-bottom: 10px;}
.hubTour p {font-size: 16px; color: #fff;}
.hubTour .bookTout_Btn {width: 100%; max-width: 130px; height: 46px; border-radius: 7px; background: #fff; color: #1565C0; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 20px; transition: all 0.2s;}
.hubTour .bookTout_Btn:hover {transform: scale(1.1); transition: all 0.3s;}

.map_table {width: 100%;}
.map_table span {display: block; width: 100%; text-align: right; font-size: 12px; color: #777777; margin-bottom: 8px;}
.map_table .map_num_box {width: 100%; display: flex; align-items: center;  border-radius: 5px; border: 1px solid #EBEBEB; position: relative; background: #F5F5F5;}
.map_table .map_num_box::after {content: ''; width: 100%; height: 5px; position: absolute; background: #0D47A1; left: 50%; top: 0; transform: translateX(-50%); border-radius: 12px;}
.map_table .map_num_box .num_box {width: 33.3333%; box-sizing: border-box; padding: 18px 0 15px; text-align: center;}
.map_table .map_num_box .num_box h4 {font-size: 34px; color: #0D47A1; font-weight: 900;}
.map_table .map_num_box .num_box .text {font-size: 20px; color: #565656; margin-top: 14px;}

.Programs_table {width: 100%; margin-top: 52px;}
.Programs_table .text_title {font-size:36px; width: 100%; text-align: center; font-weight: 800;}
.Programs_table .Programs_sub_text {font-size: 18px; margin-top: 23px; display: block; width: 100%; text-align: center;} 
.Programs_table .Programs_content {width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(211, 211, 211, .5); margin-top: 47px;}
.Programs_table .Programs_content .Programs_box {width: 100%; border-right: 1px solid rgba(211, 211, 211, .5); box-sizing: border-box; padding: 40px 20px;}
.Programs_table .Programs_content .Programs_box:last-child {border-right: none;}
.Programs_table .Programs_content .Programs_box h5 {width: 100%; text-align: left; font-size: 24px; margin-bottom: 36px; font-weight: 600; line-height: 1.3; height: 63px;}
.Programs_table .Programs_content .Programs_box ul {list-style: inside; line-height: 1.5; font-size: 16px;}
.Programs_table .Programs_content .Programs_box ul li {box-sizing: border-box; padding-left: 20px; text-indent: -20px; font-size: 16px;}
.Programs_notice {font-size: 15px; font-weight: normal; box-sizing: border-box; padding: 45px 0px; line-height: 1.5; padding-left: 52px; text-indent: -57px;}
.Programs_notice span {font-weight: 600;}
.bottom_btn_box {width: 100%; text-align: center;}
.bottom_btn_box .Programs_join_btn {display: inline-block; box-sizing: border-box; padding: 17px 42px; border-radius: 10px; background: #1E88E5; box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); color: #fff; font-size: 20px; font-weight: 600; transition: all 0.2s;}
.bottom_btn_box .Programs_join_btn:hover {transform: scale(1.1); transition: all 0.3s;}

.innovation_title {font-size: 36px; width: 100%; text-align: center; margin: 80px 0 40px; font-weight: 600;}
.supportAreas_content {width: 100%; border: 1px solid rgba(211, 211, 211, .5);}
.supportAreas_content .supportAreas_box1 {display: flex; align-items: center;}
.supportAreas_content .supportAreas_box1 .areas_box {width: 33.333%; border-right: 1px solid rgba(211, 211, 211, .5); height: 172px; box-sizing: border-box; padding: 27px 30px 0; border-bottom: 1px solid rgba(211, 211, 211, .5);}
.supportAreas_content .supportAreas_box1 .areas_box:last-child {border-right: none;}
.supportAreas_content .supportAreas_box2 {display: flex; align-items: center;}
.supportAreas_content .supportAreas_box2 .areas_box {width: 50%; height: 140px; box-sizing: border-box; padding: 20px 30px 0;  border-right: 1px solid rgba(211, 211, 211, .5);}
.supportAreas_content .supportAreas_box2 .areas_box:last-child {border-right: none;}
.supportAreas_content .areas_box h5 {font-size: 24px; font-weight: 600; margin-bottom: 12px;}
.supportAreas_content .areas_box p {font-size: 16px; line-height: 1.3;}

.investment_content {width: 100%; display: flex; align-items: center; align-items: flex-start; margin-top: 50px;}
.investment_content:first-child {margin-top: 80px;}
.investment_content .Investment_left {width: calc(70% - 15px); margin-right: 15px;}
.investment_content .Investment_left .top_content {width: 100%; display: flex; align-items: center; margin-bottom: 30px;}
.investment_content .Investment_left .top_content .title_box {display: inline-block; border: 1px solid #1E88E5; border-radius: 20px; box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); box-sizing: border-box; padding: 18px 28px; font-size: 22px; font-weight: 600;}
.investment_content .Investment_left .top_content .line {display: block; width: 100%; max-width: 215px; height: 1px; background: #1E88E5; margin-left: 15px;}
.investment_content .Investment_left .bottom_content {width: 100%; display: flex; align-items: center; align-items: flex-start;}
.investment_content .Investment_left .bottom_content .key_table {margin-right: 15px; width: 100%; max-width: 260px;}
.investment_content .Investment_left .bottom_content table {border: 1px solid #9DB5E5;}
.investment_content .Investment_left .bottom_content table th {background: #9DB5E5; font-size: 18px; font-weight: 600; box-sizing: border-box; padding: 6px 0;}
.investment_content .Investment_left .bottom_content table td {text-align: left; line-height: 1.3; box-sizing: border-box; padding: 6px 12px 12px; height: 102px; vertical-align: middle;}
.investment_content .Investment_left .bottom_content .details_table td {text-align: left;}
.investment_content .Investment_left .bottom_content table td h4 {font-size: 18px; font-weight: 600; text-align: center;}
.investment_content .Investment_left .bottom_content table td p {font-size: 16px;}
.investment_content .Investment_left .bottom_content .details_table td p {box-sizing: border-box; padding-left: 20px; text-indent: -20px;}
.investment_content .Investment_left .bottom_content .arrow_img {display: block; width: 100%; max-width: 35px; margin: auto 0 auto 12px;}

.investment_content .Investment_right {width: 30%; position: relative; padding: 34px 23px 10px; background: #C5D9FF; margin-top: 38px; box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);}
.investment_content .Investment_right .right_title {position: absolute; width: 100%; max-width: 315px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid #fff; background: #9DB5E5; box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25); font-size: 16px; color: #fff; line-height: 1.3; font-weight: 600; top: -38px; left: 50%; transform: translateX(-50%);}
.investment_content .Investment_right .accomplishment_box {width: 100%; max-width: 310px; background: #fff; text-align: center; line-height: 1.5; margin-bottom: 10px; box-sizing: border-box; padding: 8px 0;}
.investment_content .Investment_right .accomplishment_box:last-child {margin-bottom: 0;}
.investment_content .Investment_right .accomplishment_box p {display: block; font-size: 16px;}
.investment_content .Investment_right .accomplishment_box h4 {font-size: 20px; font-weight: 600;}
.investment_content .Investment_right .accomplishment_box h4 span {font-weight: 900; font-size: 22px;}

.tryEverything_content {width: 100%; margin-top: 50px;}
.tryEverything_content .list {width: 100%; display: grid; grid-template-columns: repeat(4, 1fr);}
.tryEverything_content .list li {width: 100%;}
.tryEverything_content .list li .top_img {box-sizing: border-box; padding: 0 5px; width: 100%; max-width: 280px; margin: 0 auto 25px;}
.tryEverything_content .list li .top_img img {display: block; width: 100%;}
.tryEverything_content .list li .bottom_text {border: 1px solid rgba(211, 211, 211, .5); border-right: none; box-sizing: border-box; padding: 18px 30px; height: 163px;}
.tryEverything_content .list li .bottom_text:last-child {border-right: 1px solid rgba(211, 211, 211, .5);}
.tryEverything_content .list li .bottom_text h4 {font-size: 24px; font-weight: 600; margin-bottom: 12px;}
.tryEverything_content .list li .bottom_text p {font-size: 16px; line-height: 1.3;}


/* Contact */
.map_title {font-size: 36px; font-weight: 800; margin: 80px 0 47px; width: 100%; text-align: center;}
.map-section .location {display: block; font-size: 16px;}
.map_content {width: 100%; display: flex; align-items: center; background: #FBFBFB; margin-bottom: 48px; box-sizing: border-box; padding: 30px;}
.map_content .addr_box {width: 53%;}
.map_content .addr_box .list {width: 100%;}
.map_content .addr_box .list li {display: flex; align-items: center; margin-bottom: 20px;}
.map_content .addr_box .list li img {display: block; width: 100%; max-width: 30px; margin-right: 10px;}
.map_content .addr_box .list li p {font-size: 16px; line-height: 1.3; font-weight: 500;}
.map_content .map_box {width: 45%; margin-left: auto;}
.map-section .container {padding: 0; width: 100%; max-width: 604px; margin: 0 auto;}

.contact {width: 100%;}
.contact .contact_title {font-size: 36px; font-weight: 800; width: 100%; text-align: center; margin-bottom: 60px;}
.contact table {width: 100%; border: 1px solid #D3D3D3;}
.contact table th,.contact table td  {box-sizing: border-box; padding: 20px; font-size: 16px;}
.contact table th {background: #FAFAFA; font-weight: 600; border-bottom: 1px solid #D3D3D3; border-right: 1px solid #D3D3D3; vertical-align: middle;}
.contact table td {border-bottom: 1px solid #D3D3D3; line-height: 1.5; text-align: center;}
.contact table td a {display: block; width: 100%;}



.map-wrap {background: url(/web/cportal/page__gongdeok_eng/img/map_img.png)no-repeat; background-position: center; background-size: cover;   position: relative; width: 1159px;  height: 483px;margin: 40px auto;}
.marker {position: absolute; width: 22px; height: 30px; background: none; border-radius: 50% 50% 50% 50%; transform: translate(-50%, -100%); cursor: pointer;}


/* 호버 툴팁 */
.marker-tooltip::after {content: attr(data-country); position: absolute; bottom: 115%; left: 50%; transform: translateX(-50%); white-space: nowrap; padding: 4px 10px; border-radius: 999px; background: rgba(0, 0, 0, 0.8); color: #ffffff; font-size: 12px; opacity: 0; pointer-events: none; transition: opacity 0.15s ease;}

.marker-tooltip:hover::after {opacity: 1;}


/* 유럽 */
.marker-pt { left: 2.5%;  top: 33%; }  /* Portugal */
.marker-es { left: 4.5%; top: 34%; }  /* Spain */
.marker-fr { left: 5.4%; top: 29%; }  /* France */
.marker-be { left: 15.7%; top: 40%; display: none;}  /* Belgium */
.marker-nl { left: 16.4%; top: 38%; display: none;}  /* Netherlands */
.marker-de { left: 7.2%; top: 26%; }  /* Germany */
.marker-dk { left: 7.7%; top: 20%; }  /* Denmark */

/* 중동 */
.marker-ae { left: 20%; top: 44%; }  /* UAE */

/* 아시아 (인도~일본) */
.marker-in { left: 28%; top: 46.5%; } /* India */
.marker-th { left: 33.6%; top: 51.5%; } /* Thailand */
.marker-sg { left: 34.4%; top: 58.5%; } /* Singapore */
.marker-my { left: 35%; top: 66.5%; display: none;} /* Malaysia */
.marker-vn { left: 36%; top: 51%; }   /* Vietnam */
.marker-cn { left: 35.5%; top: 34%; }   /* China */
.marker-kr { left: 39%; top: 44%; }   /* Korea */
.marker-jp { left: 44%; top: 37%; }   /* Japan */

/* 미국 */
.marker-usw { left: 76%;  top: 34%; }   /* US West */
.marker-use { left: 90%;  top: 29%; }   /* US East */



.hero-content,
.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Page-specific Styles */

/* Page Hero for subpages */
.page-hero {
    position: relative;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.page-hero .hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
}

.page-hero .hero-content .banner_sub {display: inline-block; box-sizing: border-box; padding: 14px 0; position: relative; font-size: 20px; font-weight: 600;}
.page-hero .hero-content .banner_sub::after {content: ''; width: 100%; height: 2px; background: #fff; position: absolute; left: 50%; top: 0; transform: translateX(-50%); border-radius: 8px;}
.page-hero .hero-content .banner_sub::before {content: ''; width: 100%; height: 2px; background: #fff; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); border-radius: 8px;}


/* Try Everything specific hero */
.try-everything-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.festival-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

/* Navigation Dropdown */
.main-nav .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 24px;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 200px;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    border-radius: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Program Cards */
.program-cards,
.program-types .program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.program-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.program-card ul {
    list-style: none;
    margin-left: 0;
}

.program-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.program-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Floor Information */
.floor-info {
    margin-top: 2rem;
}

.floor-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #2563eb;
}

.floor-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.floor-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.floor-details ul {
    list-style: none;
    margin: 0;
}

.floor-details ul li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1rem;
}

.floor-details ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Map Section */
.map-container {
    margin: 2rem 0;
}

.location-map {
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    background: #f1f5f9;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #64748b;
}

/* Stats Overview */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-card .stat-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Updates */
/* @media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .program-cards {
        grid-template-columns: 1fr;
    }

    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 0.5rem;
    }

    .main-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
} */
