         body, html {
            height: 100%;
            margin: 0;
            font-family: 'Arial', sans-serif;
            background: white;
            color: black;
            overflow: hidden;
        }
    
        /* Main Layout */
        .main-container {
            display: flex;
            height: 100%;
        }
    
        /* Sidebar */
        .sidebar {
            width: 250px;
            background: #111;
            padding: 20px;
            transition: width 0.3s ease;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
        }
    
        .sidebar.collapsed {
            width: 60px;
        }
    
        .sidebar.collapsed .sidebar-item span {
            display: none;
        }
    
        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
    
        .sidebar-header h3 {
            color: #fff;
            margin: 0;
        }
    
        .sidebar-header button {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
    
        .sidebar-header button:hover {
            transform: rotate(90deg);
        }
    
        .sidebar-item {
            display: flex;
            align-items: center;
            padding: 10px;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            margin-bottom: 10px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
    
        .sidebar-item:hover {
            background: #333;
            transform: translateX(10px);
        }
    
        .sidebar-item i {
            margin-right: 10px;
        }
    
        /* Help Page Content */
        .container {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }
    
        .section {
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            background: #f9f9f9;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }
    
        .section h2 {
            color: black;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
    
        .section h2:hover {
            color: #007bff;
        }
    
        .steps {
            padding-left: 20px;
        }
    
        .steps li {
            margin-bottom: 10px;
            padding: 10px;
            background: #fff;
            border-radius: 5px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        .steps li:hover {
            transform: translateX(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
    
        .back-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
    
        .back-btn:hover {
            background: #0056b3;
            transform: translateY(-3px);
        }
    
        /* Paragraph Hover Effect */
        p {
            transition: all 0.3s ease;
        }
    
        p:hover {
            color: #007bff;
            transform: scale(1.02);
        }
 