
    /* Scoped CSS for Fuji Blog Post - Optimized for Core Web Vitals */
    .fuji-blog-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #2c3e50;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Author & Trust Signals */
    .expert-byline {
        background-color: #f1f8ff;
        border-left: 4px solid #0366d6;
        padding: 12px 15px;
        font-size: 14px;
        color: #586069;
        margin-bottom: 25px;
        border-radius: 0 4px 4px 0;
    }

    /* Headings */
    .fuji-blog-container h2 {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 40px;
        margin-bottom: 15px;
        border-bottom: 2px solid #d32f2f;
        padding-bottom: 8px;
    }

    .fuji-blog-container h3 {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-top: 30px;
        margin-bottom: 12px;
    }

    /* Paragraphs & Links */
    .fuji-blog-container p {
        margin-bottom: 18px;
    }

    .fuji-blog-container a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #d32f2f;
        transition: all 0.2s ease;
    }

    .fuji-blog-container a:hover {
        color: #b71c1c;
        border-bottom: 1px solid #b71c1c;
    }

    /* Images */
    .fuji-blog-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    
    .image-caption {
        text-align: center;
        font-size: 13px;
        color: #666;
        margin-top: -15px;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* Comparison Table Styling - Modernized */
    .tech-table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
    }

    .tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 8px;
        overflow: hidden;
    }

    .tech-table th, .tech-table td {
        border-bottom: 1px solid #eee;
        padding: 14px 18px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #111;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .tech-table tr:last-child td {
        border-bottom: none;
    }
    
    .tech-table tr:hover {
        background-color: #fafafa;
    }

    /* Feature Callout */
    .feature-callout {
        background-color: #fff8f8;
        border: 1px solid #ffebee;
        padding: 20px;
        border-radius: 6px;
        margin: 25px 0;
    }

    .feature-callout ul {
        margin: 0;
        padding-left: 20px;
    }

    .feature-callout li {
        margin-bottom: 10px;
    }

    /* FAQ Section Styles */
    .faq-container {
        margin-top: 40px;
    }

    .faq-box {
        background-color: #fff;
        border: 1px solid #eaeaea;
        border-left: 4px solid #d32f2f;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    }

    .faq-q {
        font-weight: 700;
        color: #111;
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
    }

    .faq-box p {
        margin-bottom: 0;
        color: #444;
    }

    /* Mobile Responsive Tweaks */
    @media (max-width: 768px) {
        .fuji-blog-container {
            font-size: 15px;
            padding: 15px;
        }
        .fuji-blog-container h2 {
            font-size: 21px;
            margin-top: 30px;
        }
        .expert-byline {
            font-size: 13px;
        }
    }
