
    /* Scoped CSS for Fuji Blog Post Optimization - EEAT Compliant */
    .fuji-blog-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #2c3e50;
        width: 100%;
        max-width: 900px; /* Optimized reading width */
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }

    /* Headings */
    .fuji-blog-container h2 {
        font-size: 24px; 
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 40px;
        margin-bottom: 18px;
        border-bottom: 2px solid #e60012; /* Fuji Red Brand Color */
        padding-bottom: 8px;
        line-height: 1.3;
    }

    .fuji-blog-container h3 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #e60012;
    }

    /* Text & Links */
    .fuji-blog-container p {
        margin-bottom: 18px;
        text-align: justify;
    }
    
    .fuji-blog-container ul {
        margin-bottom: 25px;
        padding-left: 25px;
    }
    
    .fuji-blog-container li {
        margin-bottom: 10px;
    }

    .fuji-blog-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    .fuji-blog-container a:hover {
        color: #a3000d;
    }

    /* Images */
    .fuji-blog-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    .fuji-img-caption {
        text-align: center;
        font-size: 14px;
        color: #666;
        margin-top: -15px;
        margin-bottom: 25px;
        font-style: italic;
    }

    /* Comparison & Tech Table Styles */
    .fuji-table-wrapper {
        overflow-x: auto; 
        margin-bottom: 30px;
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }
    
    .fuji-tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }
    
    .fuji-tech-table th, 
    .fuji-tech-table td {
        padding: 14px 16px;
        border: 1px solid #e0e0e0;
        text-align: left;
    }
    
    .fuji-tech-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #111;
    }
    .fuji-tech-table tr:hover {
        background-color: #fdfdfd;
    }

    /* Callout Boxes (EEAT Signals) */
    .fuji-tip-box, .fuji-field-test-box, .fuji-global-box {
        padding: 20px 25px;
        margin: 30px 0;
        font-size: 16px;
        border-radius: 0 6px 6px 0;
    }
    .fuji-tip-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
    }
    .fuji-field-test-box {
        background-color: #eef2f5;
        border-left: 5px solid #34495e;
    }
    .fuji-global-box {
        background-color: #fdfaf9;
        border-left: 5px solid #e60012;
        box-shadow: 0 2px 8px rgba(230,0,18,0.05);
    }
    .fuji-warning-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px 25px;
        margin: 30px 0;
        font-size: 16px;
        border-radius: 0 6px 6px 0;
    }

    /* FAQ Section Styles */
    .fuji-faq-section {
        margin-top: 45px;
        background-color: #fafafa;
        padding: 25px 30px;
        border-radius: 8px;
        border: 1px solid #eaeaea;
    }
    
    .fuji-faq-item {
        background: #fff;
        border-left: 5px solid #e60012;
        padding: 18px 22px;
        margin-bottom: 18px;
        border-radius: 0 4px 4px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    
    .fuji-faq-question {
        display: block;
        font-weight: 700;
        font-size: 17px;
        color: #111;
        margin-bottom: 10px;
    }

    /* Author Bio Box */
    .fuji-author-box {
        margin-top: 50px;
        padding: 20px;
        background: #fdfdfd;
        border-top: 3px solid #e60012;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .fuji-author-text h4 {
        margin: 0 0 5px 0;
        color: #111;
        font-size: 18px;
    }
    .fuji-author-text p {
        margin: 0;
        font-size: 14px;
        color: #555;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .fuji-blog-container { padding: 15px; }
        .fuji-tip-box, .fuji-warning-box, .fuji-field-test-box, .fuji-global-box, .fuji-faq-section { padding: 15px; }
        .fuji-author-box { flex-direction: column; text-align: center; }
    }
