:root {
            --sidebar-width: 300px;
            --primary-color: #84bd5b;
            --primary-dark: #4f46e5;
            --secondary-bg: #f8fafc;
            --accent-color: #10b981;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #fff;
            color: #1e293b;
            scroll-behavior: smooth;
        }
        /* Mobile Header / Navbar */
        #mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 15px 20px;
            z-index: 1001;
            border-bottom: 1px solid #e2e8f0;
            justify-content: space-between;
            align-items: center;
        }
        #mobile-nav button{
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: #fff;
            border: 1px solid var(--primary-color);
        }

        /* Sidebar Styling */
        #sidebar {
            width: var(--sidebar-width);
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            background: var(--secondary-bg);
            border-right: 1px solid #e2e8f0;
            overflow-y: auto;
            padding-top: 30px;
            z-index: 1000;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sidebar-header {
            padding: 0 30px 20px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 20px;
        }

        .sidebar-header .logo {
            width: 180px;
        }

        /* Search Bar Styling */
        .search-container {
            padding: 0 20px 15px;
        }

        .sidebar-search {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 8px 12px;
            width: 100%;
            font-size: 0.85rem;
            outline: none;
            transition: all 0.2s;
        }

        .sidebar-search:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .nav-link {
            color: #64748b;
            padding: 12px 30px;
            font-weight: 500;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
            border-left: 4px solid transparent;
        }

        .nav-link:hover {
            color: var(--primary-color);
            background: rgba(99, 102, 241, 0.05);
        }

        .nav-link.active {
            color: var(--primary-color);
            background: #fff;
            border-left: 4px solid var(--primary-color);
        }

        .nav-link i {
            width: 24px;
            margin-right: 12px;
        }

        .section-title {
            padding: 20px 30px 8px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #94a3b8;
            font-weight: 800;
        }

        /* Main Content Area */
        #content {
            margin-left: var(--sidebar-width);
            padding: 60px 80px;
            max-width: 1200px;
        }

        .hero-banner {
            background: linear-gradient(135deg, #84bd5b 0%, #d4e7ca 100%);
            border-radius: 24px;
            padding: 40px;
            color: white;
            margin-bottom: 50px;
        }

        .doc-card {
            background: #fff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        }

        .accordion-item {
            border: 1px solid #f1f5f9 !important;
            border-radius: 12px !important;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .accordion-button {
            padding: 20px;
            font-weight: 600;
            color: #1e293b;
            box-shadow: none !important;
            background-color: #fff;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(99, 102, 241, 0.05);
            color: var(--primary-color);
        }

        .accordion-body {
            padding: 20px;
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            background-color: #fff;
        }

        /* .screenshot-placeholder {
            background: #f1f5f9;
            border: 2px dashed #cbd5e1;
            border-radius: 12px;    
            height: 200px;
            padding: 10px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            margin: 20px 0;
            font-style: italic;
        } */
        .screenshot-placeholder {
            background: #f1f5f9;
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            padding: 10px;
        }

        .screenshot-placeholder .img-box {
            width: 100%;
        }

        .step-badge {
            background: var(--primary-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 10px;
            display: inline-block;
        }

        .alert-custom {
            background: #f0fdf4;
            border-radius: 16px;
            padding: 20px;
            border: 1px solid #4ade80;
            color: #166534;
        }

        @media (max-width: 992px) {
            /* #sidebar {
                transform: translateX(-100%);
            }

            #content {
                margin-left: 0;
                padding: 30px 20px;
            } */
              #mobile-nav { display: flex; }
            #sidebar { 
                transform: translateX(-100%); 
                top: 60px; /* Leave space for mobile header */
                height: calc(100vh - 60px);
                width: 280px;
            }
            #sidebar.active { transform: translateX(0); }
            #content { margin-left: 0; padding: 100px 20px 40px; }
            #overlay.active { display: block; }
        }