/* BLOG SPECIFIC STYLES - CENTERED LAYOUT */
        .blog-header {
            text-align: center;
            padding: 2rem 1rem 1rem;
            margin-bottom: 2rem;
        }
        
        .blog-header h1 {
            font-size: 2.5rem;
            color: #2d3748;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .blog-header p {
            font-size: 1.1rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Blog Cards - MATCHING YOUR IMAGE DESIGN - CENTERED */
        .blog-cards-container {
            max-width: 1000px;
            margin: 0 auto 3rem;
            padding: 0 1rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-color: #4299e1;
        }
        
        .blog-card-title {
            font-size: 1.9rem;
            color: #2d3748;
            margin-bottom: 0.75rem;
            font-weight: 800;
            line-height: 1.3;
        }
        
        .blog-card-excerpt {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .blog-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }
        
        .blog-card-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #ebf8ff;
            color: #3182ce;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .blog-card-date {
            color: #718096;
            font-size: 0.9rem;
        }
        
        .read-more-link {
            color: #4299e1;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
        }
        
        .read-more-link:hover {
            color: #2b6cb0;
            text-decoration: underline;
        }
        
        .read-more-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
        }
        
        .read-more-link:hover svg {
            transform: translateX(3px);
        }
        
        /* Categories and popular posts - moved to the bottom */
        .blog-categories-section {
            max-width: 800px;
            margin: 0 auto 3rem;
            padding: 0 1rem;
        }
        
        .blog-categories-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .category-filter-btn {
            padding: 0.5rem 1.25rem;
            background: #f7fafc;
            color: #4a5568;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .category-filter-btn:hover,
        .category-filter-btn.active {
            background: #4299e1;
            color: white;
            border-color: #4299e1;
        }
        
        .popular-posts-section {
            max-width: 800px;
            margin: 0 auto 3rem;
            padding: 0 1rem;
        }
        
        .popular-posts-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .popular-post-card {
            background: white;
            border-radius: 6px;
            padding: 1rem;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
        }
        
        .popular-post-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-color: #4299e1;
        }
        
        .popular-post-card h4 {
            font-size: 1rem;
            color: #2d3748;
            margin: 0 0 0.5rem 0;
            font-weight: 600;
        }
        
        .popular-post-card p {
            font-size: 0.85rem;
            color: #718096;
            margin: 0;
        }
        
        /* Pagination - Centered */
        .blog-pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 2rem 0;
        }
        
        .page-link {
            padding: 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .page-link:hover,
        .page-link.active {
            background: #4299e1;
            color: white;
            border-color: #4299e1;
        }
        
        /* Stay Updated Section */
        .stay-updated {
            max-width: 800px;
            margin: 2rem auto 3rem;
            padding: 1.5rem;
            background: #edf2f7;
            border-radius: 8px;
            text-align: center;
        }
        
        .stay-updated h3 {
            font-size: 1.25rem;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }
        
        .stay-updated p {
            font-size: 1rem;
            color: #4a5568;
            margin: 0;
        }
        
        @media (max-width: 767px) {
            .blog-header h1 {
                font-size: 2rem;
            }
            
            .blog-card {
                padding: 1.25rem;
            }
            
            .blog-card-title {
                font-size: 1.25rem;
            }
            
            .blog-categories-container {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }
            
            .category-filter-btn {
                white-space: nowrap;
            }
        }
        
        /* Make blog cards clickable */
        .blog-card {
            cursor: pointer;
        }
        
        .blog-card a {
            text-decoration: none;
            color: inherit;
        }