.blog-hero {
        background: #f8f9fa;
        padding: 60px 0 40px;
        margin-bottom: 50px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .hero-content p {
        font-size: 1rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .blog-container {
        padding: 0 0 60px;
    }
    
    .blog-main-content {
        background: white;
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .sidebar {
        position: sticky;
        top: 100px;
    }
    
    .sidebar-card {
        background: white;
        border: 1px solid #e9ecef;
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .sidebar-card h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
        padding-bottom: 10px;
        border-bottom: 2px solid #333;
    }
    
    .search-form {
        position: relative;
    }
    
    .search-form input {
        width: 100%;
        padding: 12px 45px 12px 15px;
        border: 1px solid #dee2e6;
        font-size: 0.95rem;
        transition: border-color 0.2s;
    }
    
    .search-form input:focus {
        outline: none;
        border-color: #333;
    }
    
    .search-form button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: #333;
        border: none;
        width: 38px;
        height: 38px;
        color: white;
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .search-form button:hover {
        background: #555;
    }
    
    .category-list, .recent-posts-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .category-list li, .recent-posts-list li {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .category-list li:last-child, .recent-posts-list li:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .category-list a, .recent-posts-list a {
        color: #555;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .category-list a:hover, .recent-posts-list a:hover {
        color: #333;
    }
    
    .post-count {
        background: #f8f9fa;
        color: #555;
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tags a {
        padding: 6px 14px;
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
        transition: all 0.2s;
    }
    
    .tags a:hover {
        background: #333;
        color: white;
        border-color: #333;
    }
    
    .sidebar-banner {
        overflow: hidden;
    }
    
    .sidebar-banner img {
        width: 100%;
        display: block;
        transition: transform 0.3s;
    }
    
    .sidebar-banner:hover img {
        transform: scale(1.05);
    }
    
    .pagination {
        margin-top: 40px;
    }
    
    @media (max-width: 991px) {
        .sidebar {
            position: static;
            margin-top: 40px;
        }
        
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .blog-main-content {
            padding: 20px;
        }
    }