

   /* 전체 페이지 래퍼 - 푸시 방식 */
        .page-wrapper-unique2024 {
            position: relative;
            min-height: 100vh;
            background-color: white;
            transition: margin-left 0.3s ease;
            margin-left: 0;
        }

        .page-wrapper-unique2024.panel-open {
            margin-left: 200px;
        }

        /* 사이드 패널 스타일 - 푸시 방식 */
        .side-panel-unique2024 {
            position: fixed;
            top: 0;
            left: -200px;
            width: 200px;
            height: 100vh;
            background-color: #f5f5f5;
            border-right: 2px solid #333333;
            transition: left 0.3s ease;
            z-index: 999;
            overflow: hidden;
        }

        .side-panel-unique2024.active {
            left: 0;
        }

        /* 패널 헤더 */
        .panel-header-unique2024 {
            background: linear-gradient(to bottom, #1553B1, #0d3a7a);
            color: white;
            padding: 10px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #FFD700;
            font-family: 'Pretendard', 'Noto Sans KR', '맑은 고딕', 'Malgun Gothic', sans-serif;
        }

        .panel-title-unique2024 {
            font-size: 15px;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .panel-close-btn-unique2024 {
            background: none;
            border: none;
            color: #FFD700;
            font-size: 20px;
            cursor: pointer;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .panel-close-btn-unique2024:hover {
            transform: rotate(90deg);
        }

        /* 카테고리 메뉴 컨테이너 */
        .category-menu-unique2024 {
            padding: 0;
            background-color: #e8e8e8;
            height: calc(100vh - 50px);
            overflow-y: auto;
            overflow-x: hidden;
            font-family: 'Pretendard', 'Noto Sans KR', '맑은 고딕', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
        }

        /* 스크롤바 숨기기 */
        .category-menu-unique2024::-webkit-scrollbar {
            display: none;
        }
        
        .category-menu-unique2024 {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* 메인 카테고리 아이템 */
        .category-item-unique2024 {
            display: block;
            padding: 8px 12px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid #696969;
            transition: all 0.2s ease;
            position: relative;
            background-color: white;
            cursor: pointer;
            line-height: 1.5;
            letter-spacing: -0.3px;
        }

        .category-item-unique2024:hover {
            background-color: #FFD700;
            color: #333;
        }

        /* 선택된 메뉴 - 남색 배경 */
        .category-item-unique2024.selected {
            background-color: #1553B1;
            color: white;
            font-weight: 600;
            box-shadow: inset 4px 0 0 #FFD700;
        }

        .category-item-unique2024.selected:hover {
            background-color: #2563c1;
            color: white;
        }

        /* 1단계 대분류 */
        .main-category-unique2024 {
            font-weight: 600;
            padding-left: 22px;
        }

        .main-category-unique2024::before {
            content: '◆';
            position: absolute;
            left: 10px;
            color: #1553B1;
            font-size: 10px;
        }

       

        /* 헤더 전체 영역 */
        .hdr-wrapper-unique2024 {
            width: 100%;
            height: 80px;
            background-color: #4a7ac7;
            position: relative;
            overflow: hidden;
            border-top: 3px solid #1553B1;
            border-bottom: 3px solid #1553B1;
        }

        /* 헤더 패턴 배경 오버레이 */
        .hdr-wrapper-unique2024::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, transparent 20%, rgba(0,0,0,0.08) 21%, rgba(0,0,0,0.08) 34%, transparent 35%),
                radial-gradient(circle at 50% 50%, transparent 20%, rgba(0,0,0,0.08) 21%, rgba(0,0,0,0.08) 34%, transparent 35%),
                radial-gradient(circle at 80% 50%, transparent 20%, rgba(0,0,0,0.08) 21%, rgba(0,0,0,0.08) 34%, transparent 35%);
            background-size: 40px 40px;
            background-position: 0 0, 20px 20px, 40px 0;
            opacity: 0.6;
            z-index: 1;
            display: var(--header-pattern-display, block);
            pointer-events: none;
        }

        /* 헤더 이미지 배경 오버레이 */
        .hdr-wrapper-unique2024.use-image::after {
            background-image: var(--header-bg-image);
            background-size: var(--header-bg-size, auto);
            background-repeat: var(--header-bg-repeat, repeat);
            background-position: var(--header-bg-position, center);
            opacity: var(--header-bg-opacity, 0.3);
        }

        /* 네트워크 배경 */
        .network-background-unique2024 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 140px;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .network-canvas-unique2024 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
        }

        /* 헤더 컨테이너 */
        .hdr-container-unique2024 {
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }


        /* 상단 유틸리티 영역 */
        .hdr-top-section-unique2024 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        /* 회사 로고 */
        .company-logo-unique2024 {
            display: inline-block;
            position: relative;
            z-index: 3;
            text-decoration: none;
        }

        .logo-placeholder-unique2024 {
            display: inline-block;
            color: #ffffff;
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .logo-placeholder-unique2024:hover {
            transform: scale(1.08) translateY(-1px);
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		

        /* 고객센터 정보 */
        .customer-center-unique2024 {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 600;
            position: relative;
            z-index: 3;
        }

        .center-label-unique2024 {
            font-size: 18px;
            opacity: 0.9;
            font-weight: 700;
        }

        .center-number-unique2024 {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }



        /* 유틸리티 큰 버튼 */
        .utility-menu-unique2024 {
            display: flex;
            gap: 0;
            align-items: center;
            position: relative;
            z-index: 3;
        }

     

        .utility-big-btn-unique2024 {
            width: 90px;
            height: 60px;
            background: linear-gradient(to bottom, #1553B1, #0d3a7a);
            border: 1px solid #0a2d5f;
            color: white;
            font-weight: 600;
            font-size: 13px;
            line-height: 1.4;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }


     .utility-big-btn2-unique2024 {
            width: 90px;
            height: 60px;
            background: linear-gradient(to bottom, #2563c1, #1553B1);
            border: 1px solid #0a2d5f;
            color: white;
            font-weight: 600;
            font-size: 13px;
            line-height: 1.4;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }




        .utility-big-btn-unique2024:first-child {
            border-radius: 8px 0 0 8px;
        }

        .utility-big-btn-unique2024:last-child {
            border-radius: 0 8px 8px 0;
        }

        .utility-big-btn-unique2024:not(:last-child) {
            border-right: none;
        }



	  .utility-big-btn2-unique2024:first-child {
            border-radius: 8px 0 0 8px;
        }

        .utility-big-btn2-unique2024:last-child {
            border-radius: 0 8px 8px 0;
        }

        .utility-big-btn2-unique2024:not(:last-child) {
            border-right: none;
        }



        .utility-big-btn-unique2024:hover {
            background: linear-gradient(to bottom, #2563c1, #1553B1);
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
        }





        /* 메인 네비게이션 */
        .main-nav-unique2024 {
            background-color: #0d3a7a;
            padding: 12px 0;
            border-bottom: 3px solid #0a2d5f;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
            position: relative;
            z-index: 998;
            transition: position 0.3s ease, top 0.3s ease;
        }

        /* 네비게이션 패턴 배경 오버레이 */
        .main-nav-unique2024::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, transparent 20%, rgba(255,255,255,0.03) 21%, rgba(255,255,255,0.03) 34%, transparent 35%),
                radial-gradient(circle at 50% 50%, transparent 20%, rgba(255,255,255,0.03) 21%, rgba(255,255,255,0.03) 34%, transparent 35%),
                radial-gradient(circle at 80% 50%, transparent 20%, rgba(255,255,255,0.03) 21%, rgba(255,255,255,0.03) 34%, transparent 35%);
            background-size: 50px 50px;
            background-position: 0 0, 25px 25px, 50px 0;
            opacity: 0.4;
            z-index: 0;
            display: var(--pattern-display, block);
        }

        /* 네비게이션 컨테이너 z-index 조정 */
        .nav-container-unique2024 {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
            box-sizing: border-box;
        }
        
        /* 고정 상태에서도 중앙 정렬 유지 */
        .main-nav-unique2024.fixed .nav-container-unique2024 {
            margin: 0 auto;
        }

        /* 네비게이션 고정 상태 */
        .main-nav-unique2024.fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
        }

        /* 네비게이션 고정시 여백 조정 */
        .nav-spacer-unique2024 {
            display: none;
            height: 60px;
        }

        .nav-spacer-unique2024.active {
            display: block;
        }

        .nav-container-unique2024 {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-left-unique2024,
        .nav-right-unique2024 {
            display: flex;
            gap: var(--menu-gap, 20px);
            align-items: center;
        }

        /* 네비게이션 링크 */
        .nav-link-unique2024 {
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            position: relative;
            height: 100%;
        }

        .nav-link-yellow-unique2024 {
            color: #FFD700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .nav-link-yellow-unique2024:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: scale(1.05);
        }

        .nav-link-white-unique2024 {
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .nav-link-white-unique2024:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        /* 햄버거 버튼 */
        .hamburger-btn-unique2024 {
            background: none;
            border: none;
            color: #FFD700;
            font-size: 26px;
            font-weight: bold;
            padding: 3px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hamburger-btn-unique2024:hover {
            background-color: rgba(255, 215, 0, 0.2);
            border-radius: 5px;
            transform: scale(1.1);
        }

        /* 추가 메뉴 버튼들 */
        .more-menu-wrapper-unique2024,
        .admin-menu-wrapper-unique2024 {
            position: relative;
        }

        .more-btn-unique2024,
        .admin-btn-unique2024 {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            font-weight: bold;
            padding: 3px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 2px;
        }

        .admin-btn-unique2024 {
            color: #ffffff;
            font-size: 20px;
        }

        .more-btn-unique2024:hover,
        .admin-btn-unique2024:hover {
            transform: scale(1.2);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        }


   /* admin 메뉴 버튼들 */
        .more2-menu-wrapper-unique2024,
        .admin2-menu-wrapper-unique2024 {
            position: relative;
        }

        .more2-btn-unique2024,
        .admin2-btn-unique2024 {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            font-weight: bold;
            padding: 3px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 2px;
        }

        .admin2-btn-unique2024 {
            color: #ffffff;
            font-size: 20px;
        }

        .more2-btn-unique2024:hover,
        .admin2-btn-unique2024:hover {
            transform: scale(1.2);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        }


        /* 드롭다운 메뉴 */
        .dropdown-menu-unique2024 {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            background-color: #ffffff;
            border: 2px solid #1553B1;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            min-width: 180px;
            display: none;
            z-index: 1000;
            overflow: hidden;
        }

        .dropdown-menu-unique2024.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item-unique2024 {
            display: block;
            padding: 12px 20px;
            color: #1553B1;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border-bottom: 1px solid #e0e0e0;
        }

        .dropdown-item-unique2024:last-child {
            border-bottom: none;
        }

        .dropdown-item-unique2024:hover {
            background-color: #e3f2fd;
            padding-left: 25px;
        }

        /* 알림 메시지 스타일 */
        .notification-unique2024 {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(21, 83, 177, 0.95);
            color: white;
            padding: 20px 40px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            z-index: 10000;
            display: none;
            animation: fadeInOut 2s ease;
        }

        @keyframes fadeInOut {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
            20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
        }

  
 /* 확장 가능한 카테고리 */
        .expandable-category-unique2024 {
            cursor: pointer;
            user-select: none;
        }

        .expandable-category-unique2024::after {
            content: '▼';
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: #888;
            transition: transform 0.2s ease;
        }

        .expandable-category-unique2024.expanded::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* 서브카테고리 컨테이너 */
        .subcategory-container-unique2024 {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #fafafa;
        }

        .subcategory-container-unique2024.show {
            max-height: 500px;
        }

        /* 2단계 소분류 */
        .subcategory-unique2024 {
            padding-left: 32px;
            font-size: 14px;
            font-weight: bold;
            color: #0000FF;
            background-color: #fafafa;
            border-bottom: 1px solid #696969;
        }

        .subcategory-unique2024::before {
            content: 'ㄴ';
            position: absolute;
            left: 15px;
            color: #888;
            font-size: 12px;
            font-weight: normal;
        }

        .subcategory-unique2024:hover {
            background-color: #FFD700;
            color: #333;
        }

        .subcategory-unique2024.selected {
            background-color: #2563c1;
            color: white;
            padding-left: 32px;
        }

        /* 구분선 */
        .category-divider-unique2024 {
            height: 2px;
            background-color: #555555;
            margin: 0;
        }

        /* 회색 배경 메뉴 스타일 */
        .gray-menu-unique2024 {
            background-color: #d8d8d8 !important;
        }

        .gray-menu-unique2024:hover {
            background-color: #FFD700 !important;
            color: #333;
        }
		
		
 
 
 

/* 푸터 스타일 - 블랙 테마 */
.btss-footer-main {
    width: 100%;
    background: linear-gradient(to bottom, #222, #000);
    color: #666;
    font-size: 13px;
    margin-top: 0;
}

.btss-footer-top-bar {
    width: 100%;
    background: linear-gradient(to bottom, #111, #000);
    padding: 8px 40px;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btss-footer-logo {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}

.btss-footer-top-links {
    color: #aaa;
    font-size: 11px;
}

.btss-footer-top-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
}
.btss-footer-top-links a:hover {
    color: #ffcc00;
}
.btss-footer-top-links span {
    color: #666;
    margin: 0 5px;
}

.btss-footer-container {
    display: flex;
    width: 100%;
    padding: 12px 40px;
}

.btss-footer-left {
    flex: 1;
	color: #777;
    padding-right: 40px;
    border-right: 1px solid #333;
}

.btss-footer-info {
    line-height: 1.4;
    font-size: 12px;
}
.btss-footer-info div {
    margin-bottom: 3px;
}
.btss-footer-info span:first-child {
    display: inline-block;
    width: 70px;
    color: #bbb;
}

.btss-footer-right {
    flex: 1;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.btss-service-center {
    margin-bottom: 12px;
}

.btss-service-title {
    color: #ffcc00;
    font-size: 13px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}
.btss-service-title::before {
    content: '◆';
    margin-right: 6px;
    color: #ffcc00;
    font-size: 10px;
}

.btss-service-number {
    color: #ffcc00;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 3px;
}

.btss-service-desc {
    color: #bbb;
    font-size: 11px;
    line-height: 1.4;
}

.btss-highlight {
    color: #ffcc00;
}

.btss-copyright {
    width: 100%;
    background-color: #000;
    padding: 8px 40px;
    text-align: left;
    color: #666;
    font-size: 11px;
    border-top: 1px solid #333;
}

.btss-footer-main a {
    color: #aaa;
    text-decoration: none;
}
.btss-footer-main a:hover {
    color: #ffcc00;
}

@media (max-width: 768px) {
    .btss-footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 20px;
    }
    .btss-footer-top-links {
        margin-top: 5px;
    }
    .btss-footer-container {
        flex-direction: column;
        padding: 12px 20px;
    }
    .btss-footer-left {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-right: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .btss-footer-right {
        padding-left: 0;
    }
    .btss-service-number {
        font-size: 14px;
    }
    .btss-copyright {
        padding: 8px 20px;
    }
}



		 

