/* Table of Contents Styles */
        .blog-layout-wrapper {
            display: flex;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .blog-main-content {
            flex: 1;
            min-width: 0;
        }

        .table-of-contents {
            width: 280px;
            flex-shrink: 0;
            align-self: flex-start;
            position: sticky;
            top: 100px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
            margin-top: 40px;
        }

        .toc-title {
            font-size: 18px;
            font-weight: 700;
            color: #E30613;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #E30613;
        }

        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .toc-list li {
            margin-bottom: 12px;
        }

        .toc-list a {
            color: #374151;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.6;
            display: block;
            padding: 6px 0;
            transition: all 0.2s;
            border-left: 3px solid transparent;
            padding-left: 12px;
        }

        .toc-list a:hover {
            color: #E30613;
            border-left-color: #E30613;
            padding-left: 15px;
        }

        .toc-list a.active {
            color: #E30613;
            font-weight: 600;
            border-left-color: #E30613;
        }

        .toc-list .toc-level-2 {
            padding-left: 24px;
            font-size: 13px;
            margin-top: 8px;
        }

        @media (max-width: 1200px) {
            .blog-layout-wrapper {
                flex-direction: column;
            }
            .table-of-contents {
                width: 100%;
                position: relative;
                top: 0;
                max-height: none;
            }
        }
		
		
		ul li {
    list-style-type: none;
}