 /* Full Page Layout */
        body {
            overflow-x: hidden;
        }
        
        .main-wrapper {
            margin-left: 0;
            width: 100%;
        }
        
        .middle-sidebar-center {
            padding: 0 15px;
        }
        
        /* Header Fix */
        .middle-sidebar-header {
            left: 0;
        }
        
        /* Category Header */
        .category-header {
            text-align: center;
            padding: 20px 0;
            background: #f8f9fa;
            margin-bottom: 20px;
        }
        
        .category-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
        }
        
        .course-count {
            font-size: 16px;
            color: #666;
        }
        
        /* Course List */
        .course-list {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .course-item {
            display: flex;
            padding: 15px;
            border-bottom: 1px solid #eee;
            transition: all 0.3s;
            margin-bottom: 15px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .course-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .course-image {
            width: 200px;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            margin-right: 20px;
        }
        
        .course-details {
            flex: 1;
        }
        
        .course-title {
            font-size: 20px;
            font-weight: 600;
            color: #0066c0;
            margin-bottom: 8px;
        }
        
        .course-title:hover {
            color: #c45500;
            text-decoration: underline;
        }
        
        .course-description {
            color: #555;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .course-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #555;
        }
        
        .meta-item i {
            margin-right: 5px;
            color: #666;
        }
        
        .course-price {
            font-size: 20px;
            font-weight: bold;
            color: #B12704;
            margin: 10px 0;
        }
        
        .course-mrp {
            font-size: 16px;
            text-decoration: line-through;
            color: #777;
            margin-left: 8px;
        }
        
        .course-discount {
            color: #388e3c;
            font-size: 16px;
            margin-left: 8px;
        }
        
        .course-rating {
            display: flex;
            align-items: center;
            margin: 10px 0;
        }
        
        .buy-now-btn {
            background: #FFA41C;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            color: #000;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .buy-now-btn:hover {
            background: #FA8900;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .course-item {
                flex-direction: column;
            }
            
            .course-image {
                width: 100%;
                height: auto;
                margin-bottom: 15px;
                margin-right: 0;
            }
            
            .course-meta {
                gap: 10px;
            }
            
            .meta-item {
                font-size: 13px;
            }
        }