        .blog-header {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .blog-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            font-size: 16px;
        }
        
        .breadcrumb a {
            color: var(--white);
            margin: 0 5px;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #ccc;
        }
        
        .blog-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 60px 0;
        }
        
        .blog-posts {
            display: grid;
            gap: 30px;
        }
        
        .blog-post {
            background-color: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .post-image {
            height: 250px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-post:hover .post-image img {
            transform: scale(1.05);
        }
        
        .post-content {
            padding: 25px;
        }
        
        .post-meta {
            display: flex;
            margin-bottom: 15px;
            color: var(--dark-gray);
            font-size: 14px;
        }
        
        .post-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .post-meta i {
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .post-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .post-excerpt {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .read-more {
            color: var(--primary-color);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
        
        .page-numbers {
            display: flex;
        }
        
        .page-numbers a, .page-numbers span {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            margin: 0 5px;
            border-radius: 4px;
            color: var(--secondary-color);
            font-weight: 500;
        }
        
        .page-numbers a {
            background-color: var(--white);
            border: 1px solid #eee;
        }
        
        .page-numbers a:hover {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }
        
        .page-numbers .current {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }
        
        /* Sidebar Styles */
        .sidebar {
            display: grid;
            gap: 30px;
            align-content: start;
        }
        
        .widget {
            background-color: var(--white);
            border-radius: 4px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            color: var(--secondary-color);
        }
        
        .search-widget form {
            display: flex;
        }
        
        .search-widget input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #eee;
            border-radius: 4px 0 0 4px;
        }
        
        .search-widget button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .categories-widget ul {
            display: grid;
            gap: 10px;
        }
        
        .categories-widget li a {
            display: flex;
            justify-content: space-between;
            color: var(--dark-gray);
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .categories-widget li a:hover {
            color: var(--primary-color);
        }
        
        .categories-widget li a span {
            background-color: var(--light-gray);
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .recent-posts-widget .recent-post {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .recent-posts-widget .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-image {
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .recent-post-content h4 {
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .recent-post-content h4 a {
            color: var(--secondary-color);
        }
        
        .recent-post-content h4 a:hover {
            color: var(--primary-color);
        }
        
        .recent-post-content .post-date {
            font-size: 12px;
            color: var(--dark-gray);
        }
        
        .tags-widget {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tags-widget a {
            display: inline-block;
            background-color: var(--light-gray);
            color: var(--dark-gray);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            transition: all 0.3s ease;
        }
        
        .tags-widget a:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .blog-header h1 {
                font-size: 32px;
            }
            
            .post-title {
                font-size: 20px;
            }
        }