    /* Blog Header */
    .blog-header {
        background: linear-gradient(135deg, #297eff 0%, #0050c8 100%);
        padding: 2rem 0;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .blog-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23084cfb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");

    }
    
    .blog-title {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        color: white;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .blog-meta {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Blog Content */
    .blog-content-container {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        padding: 0;
        position: relative;
    }
    
    .blog-content {
        padding: 3rem;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #333;
    }
    
    /* Markdown Content Styling */
    .blog-content h1 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #0d6efd;
        margin: 2.5rem 0 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #0d6efd;
    }
    
    .blog-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #4361ee;
        margin: 2.2rem 0 1.2rem;
        padding-left: 0.5rem;
        border-left: 4px solid #4361ee;
    }
    
    .blog-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0a58ca;
        margin: 1.8rem 0 1rem;
    }
    
    .blog-content h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #084298;
        margin: 1.5rem 0 0.8rem;
    }
    
    .blog-content p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    
    .blog-content strong {
        color: #0d6efd;
        font-weight: 700;
    }
    
    .blog-content em {
        color: #6c757d;
        font-style: italic;
    }
    
    .blog-content ul, .blog-content ol {
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }
    
    .blog-content li {
        margin-bottom: 0.5rem;
        position: relative;
    }
    
    .blog-content ul li::before {
        content: "▸";
        color: #0d6efd;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }
    
    .blog-content ol {
        counter-reset: list-counter;
    }
    
    .blog-content ol li {
        counter-increment: list-counter;
    }
    
    .blog-content ol li::before {
        content: counter(list-counter) ".";
        color: #0d6efd;
        font-weight: bold;
        position: absolute;
        left: -2rem;
    }
    
    /* Blockquotes */
    .blog-content blockquote {
        background: linear-gradient(to right, #eef7ff, #f8f9fa);
        border-left: 5px solid #4361ee;
        padding: 1.8rem 2rem;
        margin: 2rem 0;
        border-radius: 0 10px 10px 0;
        position: relative;
        font-style: italic;
        color: #2d3748;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    
    .blog-content blockquote::before {
        content: "💡";
        position: absolute;
        top: -15px;
        left: -15px;
        background: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    /* Tables */
    .blog-content table {
        width: 100%;
        margin: 2rem 0;
        border-collapse: collapse;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .blog-content th {
        background: linear-gradient(to right, #0d6efd, #0a58ca);
        color: white;
        font-weight: 600;
        padding: 1rem;
        text-align: left;
    }
    
    .blog-content td {
        padding: 1rem;
        border-bottom: 1px solid #dee2e6;
        background-color: white;
    }
    
    .blog-content tr:nth-child(even) td {
        background-color: #f8f9fa;
    }
    
    .blog-content tr:hover td {
        background-color: #eef7ff;
    }
    
    /* Code blocks */
    .blog-content pre {
        background: #1a1a1a;
        color: #f8f8f2;
        padding: 1.5rem;
        border-radius: 10px;
        overflow-x: auto;
        margin: 2rem 0;
        font-family: 'Courier New', monospace;
        font-size: 0.95rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .blog-content code {
        background: #f1f3f9;
        color: #d63384;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.9rem;
    }
    
    .blog-content pre code {
        background: none;
        color: inherit;
        padding: 0;
    }
    
    /* Links */
    .blog-content a {
        color: #0d6efd;
        text-decoration: none;
        border-bottom: 2px dotted rgba(13, 110, 253, 0.3);
        transition: all 0.3s ease;
        font-weight: 600;
    }
    
    .blog-content a:hover {
        color: #0a58ca;
        border-bottom: 2px solid #0a58ca;
    }
    
    /* Special content blocks */
    .tip-box, .warning-box, .info-box {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 10px;
        border-left: 5px solid;
        background-color: white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .tip-box {
        border-color: #28a745;
        background-color: #f8fff9;
    }
    
    .tip-box::before {
        content: "✅ ";
        font-weight: bold;
        color: #28a745;
    }
    
    .warning-box {
        border-color: #ffc107;
        background-color: #fffcf0;
    }
    
    .warning-box::before {
        content: "⚠️ ";
        font-weight: bold;
        color: #ffc107;
    }
    
    .info-box {
        border-color: #17a2b8;
        background-color: #f0f9ff;
    }
    
    .info-box::before {
        content: "ℹ️ ";
        font-weight: bold;
        color: #17a2b8;
    }
    
    /* Author & Share Section */
    .author-section {
        background: linear-gradient(to right, #f8f9fa, #eef7ff);
        padding: 2rem;
        border-radius: 10px;
        margin: 3rem 0;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #0d6efd, #0a58ca);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .share-section {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem;
        background: #f8f9fa;
        border-radius: 10px;
        border-left: 4px solid #0d6efd;
    }
    
    .share-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s ease;
    }
    
    .share-btn:hover {
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }
    
    .share-facebook { background-color: #3b5998; }
    .share-twitter { background-color: #1da1f2; }
    .share-whatsapp { background-color: #25d366; }
    .share-copy { background-color: #6c757d; }
    
    /* Related Articles */
    .related-articles {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 2.5rem;
        margin-top: 3rem;
    }
    
    .related-card {
        background: white;
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid #0d6efd;
    }
    
    .related-card:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Back Button */
    .back-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem;
        background: linear-gradient(to right, #0d6efd, #0a58ca);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        margin-left : 16px;
    }
    
    .back-button:hover {
        transform: translateX(-5px);
        color: white;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .blog-header {
            padding: 3rem 0;
        }
        
        .blog-title {
            font-size: 2.2rem;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-content h1 {
            font-size: 1.8rem;
        }
        
        .blog-content h2 {
            font-size: 1.5rem;
        }
        
        .author-section {
            flex-direction: column;
            text-align: center;
        }
        
        .share-section {
            flex-wrap: wrap;
            justify-content: center;
        }
    }