/* 초기화 및 공통 스타일 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans KR', sans-serif;
            background-color: #1a110b; /* 이미지와 유사한 어두운 브라운 배경 */
            color: #ffffff;
            height: 200vh; /* 스크롤 테스트용 높이 */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* 헤더 스타일 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: rgba(26, 17, 11, 0.9); /* 메뉴 투명도 조절 */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }

        /* 로고 영역 */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            width: 35px;
            height: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .title {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #ffffff;
        }

        .logo-text .subtitle {
            font-size: 8px;
            letter-spacing: 1.5px;
            color: #cccccc;
        }

        /* PC 내비게이션 메뉴 */
        .nav-menu {
            display: flex;
            gap: 35px;
        }

        .nav-menu li a {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            color: #e0e0e0;
            transition: color 0.3s ease;
        }

        .nav-menu li a:hover {
            color: #ffffff;
            font-weight: 700;
        }

        /* 우측 햄버거 버튼 (기본 PC에서는 숨김 혹은 필요에 따라 표시) */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
        }

        /* 반응형 디자인 (태블릿 및 모바일) */
        @media screen and (max-width: 1024px) {
            header {
                padding: 0 25px;
                height: 75px;
            }

            /* 모바일에서는 기본 메뉴 숨김 */
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background-color: #241710;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.4s ease-in-out;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }

            /* 메뉴가 열렸을 때 */
            .nav-menu.active {
                right: 0;
            }

            .nav-menu li a {
                font-size: 18px;
            }

            /* 햄버거 버튼 표시 */
            .hamburger {
                display: flex;
            }

            /* 햄버거 버튼 애니메이션 (X자로 변환) */
            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        }