        :root {

            --bg-color: #f8fafc;
            --text-main: #1e293b;
            --text-sub: #64748b;
            --border-color: #e2e8f0;
            --white: #ffffff;
        
		
            --primary-color: #521694;
            --primary-dark: #0f3a63;
            --primary-light: #5e26dd;
            --accent-color: #ff6b35;
            --text-primary: #1a1a1a;
            --text-secondary: #5a5a5a;
            --text-muted: #8a8a8a;
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --border-color: #e0e4e8;
            --shadow-sm: 0 2px 8px rgba(26, 84, 144, 0.08);
            --shadow-md: 0 4px 16px rgba(26, 84, 144, 0.12);
            --shadow-lg: 0 8px 24px rgba(26, 84, 144, 0.16);		
		
		}
.header {
	text-align: center;
	margin: 60px 0;
	animation: fadeInDown 0.8s ease-out;
}

.header-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	box-shadow: var(--shadow-sm);
}

        .guide-container {
            max-width: 600px;
            margin: 0 auto;
			padding:0 20px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        /* 탭 스타일 */
        .tab-menu {
            display: flex;
            background: #f1f5f9;
            padding: 8px;
        }

        .tab-btn {
            flex: 1;
            padding: 12px;
            border: none;
            background: none;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-sub);
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background: var(--white);
            color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .content-section {
            display: none;
            padding: 24px;
            animation: fadeIn 0.4s ease;
        }

        .content-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 서류 섹션 */
        .section-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            color: #0f172a;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: var(--primary-color);
            margin-right: 10px;
            border-radius: 2px;
        }

        .doc-group {
            background: #f8fafc;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
        }

        .doc-sub-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
            display: block;
        }

        .doc-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .doc-list li {
            font-size: 14px;
            color: #475569;
            display: flex;
            align-items: center;
        }

        .doc-list li::before {
            content: '•';
            margin-right: 6px;
            color: #cbd5e1;
        }

        .imp-note {
            color: #e11d48 !important;
            font-weight: 700;
        }

        /* 절차(Step) 섹션 */
        .step-container {
            margin-top: 30px;
        }

        .step-item {
            position: relative;
            padding-left: 45px;
            padding-bottom: 24px;
        }

        .step-item::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e2e8f0;
        }

        .step-item:last-child::before {
            display: none;
        }

        .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 32px;
            height: 32px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            z-index: 1;
        }

        .step-content {
            background: white;
        }

        .step-title {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .step-desc {
            font-size: 13px;
            color: var(--text-sub);
            margin: 0;
        }

        @media (max-width: 480px) {
            .doc-list {
                grid-template-columns: 1fr;
            }
        }
