        :root {
            --primary: #1a2a3a; 
            --point: #c5a35d;   
            --bg: #f4f6f8;
            --white: #ffffff;
            --text-main: #222;
            --text-sub: #666;
            --radius: 16px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Pretendard', sans-serif; }
        body { background-color: var(--bg); color: var(--text-main); overflow-x: hidden; }
        body.menu-open { overflow: hidden; } /* 메뉴 열릴 때 바디 스크롤 방지 */

        .app-container { max-width: 600px; margin: 0 auto; min-height: 100vh; background: var(--white); display: flex; flex-direction: column; position: relative; }

        /* --- Header & Branding --- */
        .center-header {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            position: sticky; top: 0; z-index: 100;
        }
        .brand-group .logo { font-size: 22px; font-weight: 800; color: var(--primary); text-decoration: none;}
        .brand-group .label { font-size: 12.5px; font-weight: 500; color: var(--point); padding: 0 0 2px 2px; display: block; letter-spacing: 0.06em;}
        #openMenu { cursor: pointer; color: var(--primary); font-size: 28px; }

        /* --- Side Menu (New!) --- */
        #menuOverlay { 
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
            background: rgba(0,0,0,0.5); z-index: 1500; 
        }
        #sideMenu {
            position: fixed; top: 0; right: -85%; width: 80%; height: 100%; 
            background: var(--white); z-index: 2000; padding: 30px 24px;
            transition: right 0.3s ease-out;
            display: flex; flex-direction: column;
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        }
        #sideMenu.active { right: 0; }
        
        .menu-header { display: flex; justify-content: space-between; align-items: center; padding-bottom:20px; border-bottom: 1px solid #ddd;}
        .menu-section { padding:10px 0; margin-bottom: 30px; }
        .menu-section .section-title { font-size: 11px; color: #aaa; margin-bottom: 15px; letter-spacing: 1px; font-weight: 700; }
        .menu-link { display: flex; align-items: center; gap: 12px; padding: 14px 0; text-decoration: none; color: #333; font-weight: 600; font-size: 16px; border-bottom: 1px solid #f9f9f9; }
        .menu-link .icon { font-size: 20px; color: var(--point); }
        
        .b2b-box { 
            margin-top: auto; padding: 20px; background: #f8f9fb; border-radius: 12px; 
            border: 1px solid #eee;
        }
        .b2b-box p { font-size: 13px; font-weight: 700; margin-bottom: 5px; }
        .b2b-box span { font-size: 12px; color: #888; display: block; margin-bottom: 10px; }
        .b2b-btn { font-size: 13px; color: var(--point); text-decoration: none; font-weight: 700; }

        /* --- Hero & Search --- */
        .hero-section { padding: 80px 24px 20px; transition: all 0.3s ease; text-align:center;}
        .hero-section.compact { padding: 10px 24px; border-bottom: 1px solid #eee; }
        .hero-section.compact .hero-text { display: none; }
        .hero-text h1 { font-size: 21px; font-weight: 600; line-height:150%;margin-bottom: 25px; }
        .sub-copy { font-size: 16px; color: #888;}

        .search-box-wrap { position: relative; }
        .search-input {
            width: 100%; padding: 18px 55px 18px 24px; border-radius: var(--radius);
            border: 2px solid #ddd; background: #f8f9fb; font-size: 17px; font-weight: 600; outline: none;
        }
        .search-input:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.02); }
        .search-btn-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: 28px; }

        /* --- List Area --- */
        .trust-widget { margin: 0 24px 20px; padding: 15px; background: #f1f4f7; border-radius: 12px; display: flex; justify-content: space-around; text-align: center; }
        .trust-item .val { display: block; font-size: 15px; font-weight: 400; color: var(--text-sub); }
        .trust-item .lbl { font-size: 11px; color: var(--text-sub); }

        .result-scroll-area { 
            flex: 1; /* 남은 공간을 꽉 채워서 푸터를 아래로 밉니다 */
            padding: 0 20px 40px; 
            display: none; 
            flex-direction: column; /* 추가 */
        }
        .result-item { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid #f0f0f0; text-decoration: none; color: var(--text-main); }
        .result-item .name { font-size: 16px; font-weight: 600; }
        .highlight { color: var(--point); font-weight: 700; }
        
        .initial-guide { 
            flex: 1; /* 검색 전에도 푸터가 바닥에 붙어 있게 합니다 */
            display: flex; /* 추가: 중앙 정렬을 위해 flex 사용 */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center; 
            padding: 60px 0; 
            color: #bbb; 
	line-height: 1.4;
        }
        .footer { padding: 30px 20px; font-size: 11px; color: #bbb; text-align: center; background: #fafafa; line-height:1.5;}
        .policy { font-size: 11px; color: #bbb; text-decoration: none;}

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* 하단고정버튼 */

.floating-inquiry {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9); /* 반투명 화이트 */
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 56px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-inquiry .material-symbols-rounded {
    color: #333;
    font-size: 20px;
}

.floating-inquiry .btn-text {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
    letter-spacing: -0.5px;
}

/* 스크롤 전에는 약간 투명하게 하여 구글 느낌 유지 */
.floating-inquiry { opacity: 0.6; }
.floating-inquiry:hover { opacity: 1; transform: translateY(-3px); }