        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            text-align: center;
            padding: 2rem 0;
            position: relative;
        }
        
        .home-btn {
            position: absolute;
            top: 1.5rem;
            left: 1rem;
            width: 45px;
            height: 45px;
            background: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .home-btn:hover {
            background: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #2563eb;
        }
        
        .tagline {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 2rem;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .breadcrumb a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .breadcrumb a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        
        .blog-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .view-toggle {
            display: flex;
            background: #f8fafc;
            border-radius: 8px;
            padding: 0.3rem;
            border: 1px solid #e2e8f0;
        }
        
        .view-toggle button {
            padding: 0.5rem 1rem;
            border: none;
            background: transparent;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .view-toggle button.active {
            background: #2563eb;
            color: white;
        }
        
        .search-box {
            position: relative;
        }
        
        .search-box input {
            padding: 0.7rem 1rem 0.7rem 2.5rem;
            border: 1px solid #d1d5db;
            border-radius: 50px;
            font-size: 0.9rem;
            width: 250px;
            transition: all 0.3s ease;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
        }
        
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .category-btn {
            padding: 0.5rem 1rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .category-btn:hover, .category-btn.active {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }
        
        /* Grid View */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .blog-card {
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
        }
        
        .blog-image {
            height: 200px;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 3rem;
            position: relative;
        }
        
        .blog-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: #2563eb;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-date {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 0.5rem;
        }
        
        .blog-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #1e293b;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #e2e8f0;
            padding-top: 1rem;
            font-size: 0.9rem;
            color: #64748b;
        }
        
        .blog-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
        }
        
        .read-more {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: #1d4ed8;
        }
        
        /* List View */
        .blog-list {
            display: none;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .blog-list-item {
            display: flex;
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }
        
        .blog-list-item:hover {
            transform: translateY(-3px);
        }
        
        .list-image {
            width: 250px;
            min-width: 250px;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 2rem;
            position: relative;
        }
        
        .list-content {
            padding: 1.5rem;
            flex: 1;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .pagination button {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination button:hover, .pagination button.active {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }
        
        .sidebar {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #e2e8f0;
        }
        
        .sidebar h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #1e293b;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2563eb;
        }
        
        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .popular-post {
            display: flex;
            gap: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .popular-post:last-child {
            border-bottom: none;
        }
        
        .popular-post img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
        }
        
        .popular-post-content {
            flex: 1;
        }
        
        .popular-post-title {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: #1e293b;
        }
        
        .popular-post-date {
            font-size: 0.8rem;
            color: #64748b;
        }
        
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .tag {
            padding: 0.3rem 0.8rem;
            background: #e2e8f0;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #64748b;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: #2563eb;
            color: white;
            cursor: pointer;
        }
        
        footer {
            text-align: center;
            padding: 2rem 0;
            color: #64748b;
            font-size: 0.9rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #2563eb;
            color: white;
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .blog-controls {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .blog-list-item {
                flex-direction: column;
            }
            
            .list-image {
                width: 100%;
                height: 200px;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .home-btn {
                top: 1rem;
                left: 1rem;
                width: 40px;
                height: 40px;
            }
        }
        
        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
            color: #2563eb;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Floating Home Button */
        .floating-home-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .floating-home-btn:hover {
            background: #1d4ed8;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.5);
        }
        
        .floating-home-btn span {
            position: absolute;
            background: #ef4444;
            color: white;
            font-size: 0.7rem;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            top: -5px;
            right: -5px;
            box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
        }