
    /* Scoped CSS for Content Isolation */
    .fuji-standard-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-standard-wrapper p, 
    .fuji-standard-wrapper li, 
    .fuji-standard-wrapper td, 
    .fuji-standard-wrapper th, 
    .fuji-standard-wrapper span, 
    .fuji-standard-wrapper a {
        font-size: 16px !important;
    }

    /* Headings optimized for hierarchy */
    .fuji-standard-wrapper h1 {
        font-size: 28px !important;
        font-weight: 800;
        color: #d32f2f;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .fuji-standard-wrapper h2 {
        font-size: 22px !important;
        font-weight: 700;
        color: #000;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
        line-height: 1.3;
    }

    .fuji-standard-wrapper h3 {
        font-size: 19px !important;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #444;
    }

    /* Link styling */
    .fuji-standard-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
        border-bottom: 1px dotted #d32f2f;
    }
    .fuji-standard-wrapper a:hover {
        color: #b71c1c;
        background-color: #ffebee;
    }

    /* Image styling */
    .fuji-standard-wrapper img {
        max-width: 700px; 
        width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    .img-caption {
        text-align: center;
        font-size: 14px !important;
        color: #666;
        margin-top: -20px;
        margin-bottom: 35px;
        font-style: italic;
    }

    /* Guide Table */
    .guide-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        border: 1px solid #ddd;
    }
    .guide-table th, .guide-table td {
        border: 1px solid #ddd;
        padding: 14px;
        text-align: left;
    }
    .guide-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #2c3e50;
    }

    /* Tech Box - Blue */
    .tech-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 4px 4px 0;
    }

    /* Safety Box - Red */
    .safety-alert {
        background-color: #ffebee;
        border-left: 5px solid #d32f2f;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 4px 4px 0;
    }

    /* Compatibility Box - Green */
    .compatibility-box {
        background-color: #e8f5e9;
        border-left: 5px solid #4caf50;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 4px 4px 0;
    }

    /* FAQ Section */
    .faq-wrapper {
        margin-top: 50px;
        border-top: 1px solid #eee;
        padding-top: 30px;
        background-color: #fafafa;
        padding: 20px;
        border-radius: 8px;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: #000;
        font-size: 17px !important;
    }

    /* Lists */
    .fuji-standard-wrapper ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .fuji-standard-wrapper li {
        margin-bottom: 8px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-standard-wrapper h1 {
            font-size: 24px !important;
        }
        .fuji-standard-wrapper h2 {
            margin-top: 30px;
            font-size: 20px !important;
        }
        .guide-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        .tech-box, .compatibility-box, .safety-alert {
            padding: 15px;
        }
    }
