
    /* Scoped CSS for Fuji Blog Post - Responsive & Optimized */
    .fuji-blog-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 15px;
    }

    /* Headings */
    .fuji-blog-wrapper h2 {
        font-size: 22px;
        font-weight: 700;
        color: #111;
        margin-top: 40px;
        margin-bottom: 20px;
        border-left: 5px solid #e60012; /* Fuji Red */
        padding-left: 15px;
        line-height: 1.3;
    }

    .fuji-blog-wrapper h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Text & Lists */
    .fuji-blog-wrapper p { 
        margin-bottom: 18px; 
        text-align: justify; 
    }
    .fuji-blog-wrapper ul { 
        margin-bottom: 25px; 
        padding-left: 25px; 
    }
    .fuji-blog-wrapper li { 
        margin-bottom: 12px; 
    }

    /* Tables */
    .tech-table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }
    .tech-table th, .tech-table td {
        padding: 14px 16px;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }
    .tech-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #222;
        border-bottom: 2px solid #ccc;
    }
    .tech-table tr:last-child td {
        border-bottom: none;
    }

    /* Feature Boxes */
    .pro-tip-box {
        background-color: #f4f8fb;
        border-left: 5px solid #0056b3;
        padding: 18px;
        margin: 25px 0;
        font-size: 15px;
        border-radius: 0 6px 6px 0;
    }

    /* Images */
    .fuji-blog-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    /* Links */
    .fuji-blog-wrapper a { 
        color: #e60012; 
        text-decoration: none; 
        font-weight: 600; 
        border-bottom: 1px solid transparent;
        transition: border-bottom 0.2s ease;
    }
    .fuji-blog-wrapper a:hover {
        border-bottom: 1px solid #e60012;
    }

    /* FAQ */
    .faq-container {
        background: #fdfdfd;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-top: 40px;
    }
    .faq-item { 
        margin-bottom: 20px; 
        border-bottom: 1px solid #eaeaea; 
        padding-bottom: 20px; 
    }
    .faq-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }
    .faq-q { 
        font-weight: 700; 
        display: block; 
        margin-bottom: 8px; 
        color: #111; 
        font-size: 17px; 
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .fuji-blog-wrapper { padding: 10px; font-size: 15px; }
        .fuji-blog-wrapper h2 { font-size: 20px; margin-top: 30px; }
        .fuji-blog-wrapper h3 { font-size: 17px; }
        .tech-table th, .tech-table td { padding: 10px; font-size: 14px; }
        .pro-tip-box { padding: 15px; }
    }
    
    .fuji-blog-wrapper > *:first-child { margin-top: 0; }
