.elementor-6511 .elementor-element.elementor-element-83cde76{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-11a0694 */.header-cta:hover{
    color: white; !important
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-83cde76 *//* 헤더 컨테이너 */
        .header {

            top: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            border-bottom: 1px solid #e8e8e8;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        /* 스크롤 시 헤더 스타일 */
        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }
        
        /* 헤더 내부 컨테이너 */
        .header-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 60px;
            height: 80px;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            gap: 40px;
        }
        
        /* 로고 영역 */
        .header-logo {
            display: flex;
            align-items: center;
        }
        
        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #1a1a1a;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            transition: color 0.3s ease;
        }
        
        .logo-link:hover {
            color: #0066FF;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: #0066FF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            margin-right: 12px;
        }
        
        /* 네비게이션 메뉴 */
        .header-nav {
            display: flex;
            justify-content: center;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #0066FF;
        }
        
        /* 메뉴 호버 언더라인 효과 */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #0066FF;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        /* 드롭다운 메뉴 (서브메뉴) */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 20px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }
        
        .dropdown-item {
            display: block;
            padding: 10px 16px;
            color: #666666;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background: #f8f8f8;
            color: #0066FF;
            transform: translateX(4px);
        }
        
        /* 우측 버튼 영역 */
        .header-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 16px;
        }
        
        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666666;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .header-phone:hover {
            color: #0066FF;
        }
        
        .phone-icon {
            width: 20px;
            height: 20px;
        }
        
        .header-cta {
            background: #0066FF;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .header-cta:hover {
            background: #0052CC;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
        }
        
        /* 모바일 메뉴 버튼 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .hamburger span {
            width: 24px;
            height: 2px;
            background: #1a1a1a;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* 모바일 메뉴 */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-height: calc(100vh - 80px);
            overflow-y: auto;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
        }
        
        .mobile-nav {
            padding: 20px;
        }
        
        .mobile-nav-item {
            border-bottom: 1px solid #e8e8e8;
        }
        
        .mobile-nav-link {
            display: block;
            padding: 16px 0;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .mobile-nav-link:hover {
            color: #0066FF;
        }
        
        .mobile-actions {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .mobile-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            color: #666666;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .mobile-phone:hover {
            border-color: #0066FF;
            color: #0066FF;
        }
        
        /* 반응형 */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 40px;
            }
            
            .nav-menu {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 24px;
                grid-template-columns: 1fr auto;
                height: 70px;
            }
            
            .header-nav {
                display: none;
            }
            
            .header-actions {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .header.scrolled {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }
        
        /* 페이지 콘텐츠 여백 */
        .page-content {
            padding-top: 80px;
            min-height: 200vh; /* 스크롤 테스트용 */
            background: #f8f8f8;
            padding: 120px 60px;
        }
        
        @media (max-width: 768px) {
            .page-content {
                padding-top: 70px;
                padding: 100px 24px;
            }
        }/* End custom CSS */