        * {
            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: 900px;
            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-header {
            margin-bottom: 2rem;
        }
        
        .blog-category {
            display: inline-block;
            background: #2563eb;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .blog-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #1e293b;
            line-height: 1.3;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            color: #64748b;
            font-size: 0.9rem;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
        }
        
        .blog-hero-image {
            width: 100%;
            height: 400px;
            background: #dbeafe;
            border-radius: 12px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 4rem;
        }
        
        .blog-content {
            margin-bottom: 3rem;
        }
        
        .blog-content p {
            margin-bottom: 1.5rem;
            color: #374151;
            line-height: 1.8;
        }
        
        .blog-content h2 {
            font-size: 1.6rem;
            margin: 2.5rem 0 1rem;
            color: #1e293b;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .blog-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #2563eb;
            border-radius: 3px;
        }
        
        .blog-content blockquote {
            border-left: 4px solid #2563eb;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #64748b;
        }
        
        .blog-content ul, .blog-content ol {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }
        
        .blog-content li {
            margin-bottom: 0.7rem;
        }
        
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #64748b;
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-bottom: 2rem;
        }
        
        .tag {
            padding: 0.4rem 0.9rem;
            background: #e2e8f0;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #64748b;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: #2563eb;
            color: white;
            cursor: pointer;
        }
        
        .social-share {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
        }
        
        .facebook {
            background: #3b5998;
        }
        
        .twitter {
            background: #1da1f2;
        }
        
        .linkedin {
            background: #0077b5;
        }
        
        .whatsapp {
            background: #25d366;
        }
        
        .author-bio {
            background: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid #e2e8f0;
        }
        
        .author-bio-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .author-bio-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 1.5rem;
        }
        
        .author-bio-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: #1e293b;
        }
        
        .author-bio-info p {
            color: #64748b;
            font-size: 0.9rem;
        }
        
        .related-posts {
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1e293b;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #2563eb;
            border-radius: 3px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .related-post {
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }
        
        .related-post:hover {
            transform: translateY(-5px);
        }
        
        .related-image {
            height: 150px;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
        }
        
        .related-content {
            padding: 1.2rem;
        }
        
        .related-title {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            color: #1e293b;
            line-height: 1.4;
        }
        
        .related-date {
            font-size: 0.8rem;
            color: #64748b;
        }
        
        .comments-section {
            margin-bottom: 3rem;
        }
        
        .comment {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comment:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            flex-shrink: 0;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.7rem;
            align-items: center;
        }
        
        .comment-author {
            font-weight: 600;
            color: #1e293b;
        }
        
        .comment-date {
            font-size: 0.8rem;
            color: #64748b;
        }
        
        .comment-text {
            color: #374151;
            line-height: 1.6;
        }
        
        .comment-reply {
            color: #2563eb;
            font-size: 0.9rem;
            text-decoration: none;
            font-weight: 500;
        }
        
        .comment-reply:hover {
            text-decoration: underline;
        }
        
        .comment-form {
            background: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1.2rem;
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            color: #1f2937;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background: #2563eb;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
        }
        
        .submit-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
        }
        
        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-title {
                font-size: 1.8rem;
            }
            
            .blog-hero-image {
                height: 250px;
            }
            
            .blog-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .comment {
                flex-direction: column;
                gap: 1rem;
            }
            
            .home-btn {
                top: 1rem;
                left: 1rem;
                width: 40px;
                height: 40px;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .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);
        }