        /* Bold */
        @font-face {
            font-family: 'GmarketSans';
            src: url('../fonts/gmarketsansbold.woff2') format('woff2');
            font-weight: bold;
            font-style: normal;
        }

        /* Light */
        @font-face {
            font-family: 'GmarketSans';
            src: url('../fonts/gmarketsanslight.woff2') format('woff2');
            font-weight: lighter;
            font-style: normal;
        }

        /* Medium */
        @font-face {
            font-family: 'GmarketSans';
            src: url('../fonts/gmarketsansmedium.woff2') format('woff2');
            font-weight: 500; /* Medium은 보통 500 값 */
            font-style: normal;
        }

        /* KOHI 나눔체 */
        @font-face {
            font-family: 'SUIT-Regular';
            src: url('../fonts/SUIT-Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }

html, body {
    height: 100%;
    margin: 0; /* margin: 0은 다른 스타일에 영향 줄 수 있음 */
    padding: 0;
    font-family: 'GmarketSans', sans-serif;
    letter-spacing: 0;
}

body {
    height: auto; /* body가 화면에 맞게 늘어나게 하기 */
}

/* 네비게이션 */
nav.white {
    position: sticky;
    top: 0;
    z-index: 1000; /* 첫 번째 네비게이션 바가 두 번째보다 위에 있도록 설정 */
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 그림자 효과 추가 */
}

nav .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

nav .content_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* 두 번째 네비게이션 바 */
nav.white.sticky-navbar {
    position: sticky;
    top: 60px; /* 첫 번째 네비게이션 바 아래에서 시작하도록 설정 */
    z-index: 999; /* 두 번째 네비게이션 바는 첫 번째보다 낮게 설정 */
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 그림자 효과 추가 */
    overflow-x: auto; /* 가로 스크롤 활성화 */
}

/* 네비게이션 링크 스타일 */
.sticky-navbar .nav-link {
    text-decoration: none;
    color: #444444;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
}

/* 클릭된 상태나 활성화된 항목에 파란 밑줄 추가 */
.sticky-navbar .nav-link.active {
    color: #007bff; /* 활성화된 링크의 색상 */
}

/* 파란 밑줄 효과 */
.sticky-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007bff;
}

/* 네비게이션 리스트가 가로로 배치되도록 설정 */
.sticky-navbar .navbar-nav {
    display: flex;
    justify-content: flex-start; /* 왼쪽으로 정렬 */
    width: auto; /* 자동 크기 조정 */
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap; /* 항목이 줄 바꿈 없이 한 줄로 배치되도록 설정 */
    flex-direction: row;
}

/* 네비게이션 항목에 간격 설정 */
.sticky-navbar .navbar-nav .nav-item {
    margin: 0 15px; /* 간격 설정 */
        width: max-content;
}
/* 터치와 마우스 스크롤을 모두 지원하도록 설정 */
.sticky-navbar .navbar-nav {
    -webkit-overflow-scrolling: touch; /* 모바일에서 부드러운 스크롤을 위한 설정 */
}



.sticky-navbar .navbar-nav .nav-link {
    display: block;
    padding: 10px 20px;
}



        nav img {
            max-width: 200px; /* 회사 로고 크기 조정 */
        }

        /* 각 구역 스타일 */
        section , footer {
            min-height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 0px;
        }
        footer{
            font-family: 'SUIT-Regular';
            padding: 20px 0px;
        }

        /* 왼쪽 링크들 사이에 '|' 추가 */
        .left-links a + a::before {
            content: '|';
            margin: 0 10px;
            color: #fff; /* | 기호의 색상을 흰색으로 설정 */
        }

        /* 왼쪽 링크들을 왼쪽에 정렬 */
        .left-links {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        /* 오른쪽 텍스트는 오른쪽에 정렬 */
        footer .content .d-flex {
            justify-content: space-between;
        }


        section h1 {
            font-size: 21px;
            font-family: 'GmarketSans';
            font-weight: bold;
        }

        /* 반응형 집어넣기 */
        /* 기본적으로 모든 콘텐츠를 보여주고, 경고 메시지는 숨깁니다. */
        .content {
            display: block;
        }
        .content_m{
            display: none;
        }
        .warning-message {
            display: none; /* 기본적으로 경고 메시지는 보이지 않게 설정 */
            color: red;
            font-size: 1.8em;
            text-align: center;
            margin-top: 20px;
        }



        /* 배경색 구분 */
        .white { background-color: white; }
        .section_01 {
            background-color: #A7D6CC;
            width: 100%;
            height: 550px;            
        }
        .section_01 .content {
            background-image: url(../image/map.png);
            background-size: auto 90%; /* 높이에 맞게 자동으로 크기 조정 */
            background-repeat: no-repeat;
            background-position: center;
            background-clip: content-box;
/*            box-shadow: 0 0 0 20px #A7D6CC inset;*/
/*            padding: 20px;*/
            align-content: flex-end; 
            padding-bottom: 40px;
        }

        .section_02 { background-color: white; }
        .section_03 { background-color: #eef8f7; }
        .section_04 { background-color: white; }
        .section_05 { background-color: #eef8f7; }

        .section_11 { background-color: white; }
        .section_12 { background-color: white; }
        .section_13 { background-color: white; }
        /* 내용 담을 div */
        .content {
            width: 100%;
            max-width: 1024px; /* 1024px로 제한 */
            padding: 20px 0px;
            box-sizing: border-box;
            color: #444444;
            height:100%;
/*            text-align: center;*/
        }
        .box1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .box1 .icon {
            width: 60px;
            min-height: 60px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .box1 .icon img {
            width: 100%; /* 이미지가 div를 꽉 채우도록 설정 */
            height: 100%; /* 이미지가 div를 꽉 채우도록 설정 */
            object-fit: contain; /* 비율을 유지하면서 이미지가 부모 요소에 맞게 채워짐 */
            -webkit-object-fit: contain; /* Safari를 위한 벤더 프리픽스 */
            
        }

        .box1 .text {
            font-family: 'SUIT-Regular';
            flex: 1; /* 텍스트 영역이 남은 공간을 채움 */
            padding-left: 15px;
            font-size: 19px;
            font-weight: bold;
            color: #444444;
        }


        .card-container {
            display: flex;
            flex-wrap: wrap; /* 2x2로 카드 배치 */
            gap: 40px; /* 카드 간 간격 */
            justify-content: space-between; /* 카드 사이에 여백 */
            margin-top: 20px;
            width: 100%;
            
        }

        .card {
            width: calc(50% - 20px); /* 두 개의 카드를 한 줄에 배치 (50%씩) */
            background-color: #fff;
            border-radius: 8px;
/*            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
            overflow: hidden;
            padding: 10px;
            box-sizing: border-box;
        }

        .card img {
            width: 100%;
            height: auto;
/*            border:1px solid #444444;*/
            border-radius: 8px;
        }

        .card .card-title {
            margin-top: 10px;
            font-size: 19px;
            color: #006cb8;
            text-align: center;
            font-family: 'SUIT-Regular';
            font-weight: bold;
        }

        .card .card-text {
            margin-top: 10px;
            font-size: 17px;
            color: #444444;
            text-align: center;
            font-family: 'SUIT-Regular';
/*            font-weight: bold;*/
        }

        .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px; /* 카드 간 간격 */
            justify-content: space-between; /* 카드 사이에 여백 */
            margin-top: 20px;
            width: 100%;
        }

        .card_3x2 {
            width: calc(33.33% - 26.66px); /* 한 줄에 3개 */
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            padding: 10px;
            box-sizing: border-box;
            border :1px solid #cccccc;
        }

        .card_3x2 img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .card_3x2 .card-title {
            margin-top: 10px;
            font-size: 19px;
            color: #006cb8;
            text-align: center;
            font-family: 'SUIT-Regular';
            font-weight: bold;
        }

        .card_3x2 .card-text {
            margin-top: 10px;
            font-size: 17px;
            color: #444444;
            text-align: center;
            font-family: 'SUIT-Regular';
        }


        .box2 {
            display: flex;
            align-items: center; /* 수직 중앙 정렬 */
            justify-content: flex-start; /* 기본적으로 왼쪽 정렬 */
/*            margin-bottom: 40px;*/
        }

        .box2 .image-box {
            min-width: 205px;
            min-height: 160px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .box2 .image-box-en {
            min-width: 205px;
            min-height: 160px;
            background-image: url(../image/p1.png);
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .box2 .image-box .title {
            width: 120px;
            height: 80px;
            position: absolute;
            top: 40px;
            left: 60px;
            transform: translate(0, 0);
            color: #fff;
            font-size: 1.2em;
            font-weight: bold;
            font-family: 'SUIT-Regular';
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .box2 .image-box-en .title-en {
                width: 140px;
                height: 90px;
                position: absolute;
                top: 34px;
                left: 30px;
                transform: translate(0, 0);
                color: #00a0df;
                font-size: 19px;
                font-weight: bold;
                font-family: 'SUIT-Regular';
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
        }

        .box2 .text {
            font-family: 'SUIT-Regular';
            font-size: 1.2em;
            color: #444444;
            padding: 0px 20px;
            
        }

        .box2 .text-en {
            font-family: 'SUIT-Regular';
            font-size: 17px;
            color: #444444;
            padding: 0px 10px;
            
            line-height: 1.8;
        }

        .box2 .text div{
            margin-bottom: 10px;
        }

        /* 첫 번째 박스: 이미지 + 텍스트 순서 (왼쪽 정렬) */
        .box2-left {
            flex-direction: row; /* 기본값은 왼쪽 정렬 (이미지 + 텍스트 순서) */
        }

        /* 두 번째 박스: 텍스트 + 이미지 순서 (오른쪽 정렬) */
        .box2-right {
            flex-direction: row-reverse; /* 텍스트 + 이미지 순서 */
            text-align: right;
        }
        .image-container {
          position: relative; /* 이미지 위에 다른 요소를 배치하기 위해 상대적 위치 설정 */
          display: inline-block;
          text-align: center;
        }

        .image-container img {
          width: 80%; /* 이미지 크기를 컨테이너 크기에 맞게 조정 */
          height: auto;
        }

        .text-abs {
            font-family: 'SUIT-Regular';
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 450px;
            height: 150px;
            color: #444444;
            font-size: 19px;
            font-weight: bold;
            contain: inline-size;
            line-height: 1.5;
            text-align: left;
        }

        .text-abs-01 {
            position: absolute; /* 이미지 위에 글자 배치 */
            top: 20px;
            left: 420px;
        }
        .text-abs-02 {
            position: absolute;
            top: 204px;
            right: 400px;
            text-align: right;
        }
        .text-abs-03 {
          position: absolute; /* 이미지 위에 글자 배치 */
          top: 385px;
          left: 420px;
        }
        .text-abs-04 {
          position: absolute; /* 이미지 위에 글자 배치 */
          top: 575px;
          right: 400px;
          text-align: right;
        }
        .text-abs-05 {
          position: absolute; /* 이미지 위에 글자 배치 */
          top: 755px;
          left: 420px;
        }
.language-select{
    display: flex;
    gap: 10px;
}
.language-select select {
    font-family: 'SUIT-Regular', sans-serif;
    font-size: 1rem; /* 기본 텍스트 크기 */
    padding: 0.375rem 0.75rem; /* 드롭다운의 padding */
    border: 1px solid #ccc; /* 테두리 색상 */
    border-radius: 0.375rem; /* 둥근 테두리 */
    background-color: #ffffff; /* 배경 색상 */
    color: #333; /* 글씨 색상 */
    appearance: none; /* 기본 드롭다운 화살표 숨기기 */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 80px; /* 드롭다운 너비 */
    line-height: 1.5; /* 텍스트 줄 높이 */
}

        .language-select select:focus {
            border-color: #007bff; /* 포커스 시 파란색 테두리 */
            box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25); /* 포커스 효과 */
            outline: none; /* 기본 outline 제거 */
        }

        /* option 스타일 */
        .language-select select option {
            font-size: 0.9rem; /* 옵션 글자 크기 조정 */
            padding: 0.5rem 1rem; /* 옵션 항목의 여백 */
            line-height: 1.4; /* 옵션 항목의 줄 높이 */
        }

        /* 옵션이 열렸을 때 배경색을 약간 변경 */
        .language-select select option:hover {
            background-color: #f0f0f0; /* 마우스 오버 시 배경색 */
        }
        .chat-button {
            position: fixed;
            bottom: 115px; /* 화면 하단에서 20px 띄우기 */
            /*right: 20px;  /* 화면 우측에서 20px 띄우기 */
            left:calc(50% + 390px);
/*            padding: 15px 30px;*/
            color: black;
            text-decoration: none;
/*            border-radius: 50px;*/
            font-size: 16px;
            text-align: center;
            cursor: pointer;
            z-index: 999;
            display: flex;
            align-items: center; /* 세로 가운데 정렬 */
            justify-content: center; /* 가로 가운데 정렬 */
        }


        .chat-button2 {
            position: fixed;
            bottom: 115px; /* 화면 하단에서 20px 띄우기 */
            /*right: 20px;  /* 화면 우측에서 20px 띄우기 */
            left:calc(50% + 340px);
/*            padding: 15px 30px;*/
            color: black;
            text-decoration: none;
/*            border-radius: 50px;*/
            font-size: 16px;
            text-align: center;
            cursor: pointer;
            z-index: 999;
            display: flex;
            align-items: center; /* 세로 가운데 정렬 */
            justify-content: center; /* 가로 가운데 정렬 */
        }
        .chat-button img {
            width: auto;
            height: 40px;
/*            margin-right: 8px; /* 이미지와 글자 사이에 약간의 간격을 주기 위해 */
        }
        .chat-button2 img {
            width: auto;
            height: 40px;
/*            margin-right: 8px; /* 이미지와 글자 사이에 약간의 간격을 주기 위해 */
        }


        /* SECTION 06 */
        /* section_06 */
.section_06 {
    background-color: white;
    padding: 50px 0;
    width: 100%;
}

.section_06 .content {
    width: 100%;
    max-width: 1024px;
    padding: 20px 0;
    box-sizing: border-box;
}


.process-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.process-question h3 {
    font-size: 19px;
    font-family: 'SUIT-Regular';
    font-weight: bold;
    color: #333;
    margin: 0;
}

.process-question .toggle-icon {
    font-size: 2em;
    color: #006cb8;
    transition: transform 0.3s;
}

.process-answer {
    margin-top: 10px;
    font-size: 17px;
    color: #444444;
    line-height: 1.8;
    font-family: 'SUIT-Regular';
}


.faq-item {
    background-color: #f9f9f9;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 19px;
    font-family: 'SUIT-Regular';
    font-weight: bold;
    color: #333;
    margin: 0;
}

.faq-question .toggle-icon {
    font-size: 2em;
    color: #006cb8;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 17px;
    color: #444444;
    line-height: 1.8;
    font-family: 'SUIT-Regular';
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .toggle-icon {
    transform: rotate(45deg); /* + → X 모양으로 변경 */
}

/*************************/

        /*공통*/
        .d-flex{
            display: flex;
        }
        .flex-column{
            flex-direction: column;
        }

        .mb-1{
            margin-bottom: 10px;
        }
        .mb-2{
            margin-bottom: 15px;
        }
        .mb-3{
            margin-bottom: 20px;
        }

        .font-13 {
            font-size: 13px !important;
        }
        .font-15 {
            font-size: 15px !important;
        }
        .font-17 {
            font-size: 17px !important;
        }
        .font-19 {
            font-size: 19px !important;
        }
        .font-21 {
            font-size: 21px !important;
        }
        .font-23 {
            font-size: 30px !important;
        }

/* **************공통 끝*************** */

    @media (max-width: 1023px) {
        /* 공통 */

        .chat-button , .chat-button2{
            position: fixed;
            bottom: 140px; /* 화면 하단에서 20px 띄우기 */
            left: unset;
            right: 20px;  /* 화면 우측에서 20px 띄우기 
/*            padding: 15px 30px;*/
            color: black;
            text-decoration: none;
/*            border-radius: 50px;*/
            font-size: 16px;
            text-align: center;
            cursor: pointer;
            z-index: 999;
            display: flex;
            align-items: center; /* 세로 가운데 정렬 */
            justify-content: center; /* 가로 가운데 정렬 */
        }



        .content_inner {
            padding: 0px 10px;
        }

        .section_01 {
            height: 385px;
            padding: 10px 0px;
        }
        .section_01 .content {
            background-size: contain;
            background-position: top;
            padding: 0px;
        }
        /* section_03 */
        .section_03 .content{
            display: none;
        }
        .section_03 .content_m{
            width: 100%;
            display: block;
            box-sizing: border-box;
        }

        .section_03 .content_m .box3{
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            /*background-color: #fff;
            border-radius: 8px;
            box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);*/
            margin-bottom: 20px;
        }

        /* icon */
        .section_03 .content_m .content_inner .box3 .icon{
            width: 60px;
            min-height: 60px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            
        }
        .section_03 .content_m .content_inner .box3 .icon img{
            width: 100%;
            height: 100%;
            object-fit: contain; /* 비율을 유지하면서 이미지가 부모 요소에 맞게 채워짐 */
            -webkit-object-fit: contain; /* Safari를 위한 벤더 프리픽스 */
        }
        .section_03 .content_m .content_inner .box3 img{
            width: 100%;
            height: 100%;
            object-fit: contain; /* 비율을 유지하면서 이미지가 부모 요소에 맞게 채워짐 */
            -webkit-object-fit: contain; /* Safari를 위한 벤더 프리픽스 */
        }

        /* 숫자 스타일 */
        .section_03 .content_m .content_inner .box3 .number {
            font-size: 6em;
            font-family: 'SUIT-Regular';
            font-weight: bold;
            color: #01a8c5;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%; /* 높이를 꽉 채움 */
            width: 50px; /* 숫자 칸 너비 */
            display: none;
        }

        /* 텍스트 */
        .section_03 .content_m .content_inner .box3 .text{
            font-family: 'SUIT-Regular';
            flex: 1;
            padding-left: 15px;
            font-size: 19px;
            font-weight: bold;
            color: #444444;
        }

        .section_03 .content img {
            display: none !important; /* 이미지 제거 */
        }

        .section_03 .text-abs {
            position: static; /* absolute 제거 */
            text-align: left; /* 텍스트 왼쪽 정렬 */
            margin: 0; /* 마진 초기화 */
            font-size: 1.6em;
        }

    .box2 {
        flex-direction: column;  /* 세로로 정렬되도록 */
        align-items: center; /* 중앙 정렬 */
        margin-bottom: 15px; /* 각 박스 간 간격 증가 */
        width: 100%; /* 각 박스를 화면 너비에 맞게 확장 */
    }

    /* section_05 */
    .box2 .image-box {
        background-image: none !important; /* 이미지 배경 제거 */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 10px; /* 이미지와 텍스트 간 간격 */
    }
    .box2 .text {
        font-family: 'SUIT-Regular';
        font-size: 1.1em; /* 작은 화면에 맞는 텍스트 크기 */
        color: #444444 !important;
        padding: 10px 20px; /* 텍스트 영역 padding 조정 */
        font-weight: bold;
        text-align: left; /* 텍스트 정렬 */
    }
    .box2 .title {
        font-size: 1.3em;
        color: #444444 !important;
        padding: 5px;
        position: unset !important;
        width: auto !important;
        height: auto !important;
        font-weight: bold;
    }
    .box2-left {
        flex-direction: column; /* 세로로 정렬되도록 */
/*        align-items: center;*/
    }

    .box2-right {
        flex-direction: column; /* 세로로 정렬되도록 */
/*        align-items: center;*/
    }

    .box2 .image-box-en {
        justify-content: left;

    }
    /* section 5 관련 모바일 관련  */
        /* section_03 */
        .section_05 .content{
            display: none;
        }
        .section_05 .content_m{
            display: block;
            width: 100%;
        }
        .section_05 .content_m .box2 {
            display: block;
        }
        .section_05 .content_m .box2 .image-box-en {

            margin-left: 0;
            background-image: none;
        }
        .box2 .image-box-en{
            min-height: unset;
        }
        .section_05 .content_m .box2 .image-box-en .title-en{
            position: unset;
            width: auto;
        }

    /* .content 영역에서 박스가 정렬되는 방식 */
    .card {
        width: 100%; /* 모바일에서 카드 1개씩 표시 */
    }
    .card_3x2 {
        width: 100%;
    }

    .card_3x2-container {
        gap: 20px; /* 간격을 조금 줄이면 보기 좋아짐 */
        flex-direction: column; /* 세로 배치로 변경 */
    }
    
    /* 기타 작은 조정 */
    .language-buttons {
        flex-direction: column; /* 언어 버튼을 세로로 정렬 */
        margin-left: 0; /* 왼쪽 마진 제거 */
        gap: 10px; /* 버튼 사이 간격 줄이기 */
    }
    .language-button {
        padding: 8px 16px; /* 버튼 크기 줄이기 */
    }



}
