
    /* Scoped CSS for Content Isolation */
    .fuji-blog-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Typography Reset */
    .fuji-blog-wrapper p, 
    .fuji-blog-wrapper li, 
    .fuji-blog-wrapper td, 
    .fuji-blog-wrapper th, 
    .fuji-blog-wrapper span, 
    .fuji-blog-wrapper a {
        font-size: 16px !important;
    }

    /* Headings optimized for hierarchy without H1 */
    /* Kept anchors for CMS navigation compatibility */
    .fuji-blog-wrapper h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
        line-height: 1.3;
    }
    
    /* Remove top margin for the first header */
    .fuji-blog-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-blog-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Link styling */
    .fuji-blog-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-blog-wrapper a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Image styling */
    .fuji-blog-wrapper img {
        max-width: 600px; 
        width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* Comparison Table Styling */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #ddd;
    }
    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .tech-table th {
        background-color: #f4f4f4;
        font-weight: 700;
    }

    /* Info Box */
    .safety-box {
        background-color: #e8f5e9; /* Light Green */
        border-left: 4px solid #4caf50;
        padding: 15px 20px;
        margin: 20px 0;
    }

    /* FAQ Section */
    .faq-wrapper {
        margin-top: 40px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 5px;
        color: #000;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-blog-wrapper {
            padding: 0;
        }
        .fuji-blog-wrapper h2 {
            margin-top: 25px;
            font-size: 18px !important;
        }
        .tech-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        .safety-box {
            padding: 15px;
        }
    }
