
        /* Scoped CSS for Content Isolation & Responsive Design */
        .fuji-standard-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #2c3e50;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .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;
        }

        /* E-E-A-T Author Box */
        .e-e-a-t-author {
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
            border-left: 4px solid #d32f2f;
            padding: 15px 20px;
            margin-bottom: 35px;
            border-radius: 0 6px 6px 0;
        }
        .e-e-a-t-author div {
            margin-left: 15px;
        }
        .e-e-a-t-author h4 {
            margin: 0 0 5px 0;
            font-size: 16px;
            color: #111;
        }
        .e-e-a-t-author p {
            margin: 0 !important;
            font-size: 14px !important;
            color: #555;
            line-height: 1.4;
        }

        /* Headings optimized for hierarchy */
        .fuji-standard-wrapper h1 {
            font-size: 32px !important;
            font-weight: 800;
            color: #d32f2f;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .fuji-standard-wrapper h2 {
            font-size: 24px !important;
            font-weight: 700;
            color: #1a1a1a;
            margin-top: 45px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeaea;
            line-height: 1.3;
        }

        .fuji-standard-wrapper h3 {
            font-size: 20px !important;
            font-weight: 600;
            margin-top: 35px;
            margin-bottom: 15px;
            color: #333;
        }

        /* 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: 100%; 
            height: auto;
            display: block;
            margin: 35px auto 15px auto;
            border-radius: 6px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        
        .img-caption {
            text-align: center;
            font-size: 14px !important;
            color: #666;
            margin-bottom: 40px;
            font-style: italic;
            display: block;
        }

        /* Guide Table */
        .table-responsive {
            overflow-x: auto;
            margin: 30px 0;
        }
        .guide-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #e0e0e0;
            min-width: 600px;
        }
        .guide-table th, .guide-table td {
            border: 1px solid #e0e0e0;
            padding: 15px;
            text-align: left;
        }
        .guide-table th {
            background-color: #f4f6f8;
            font-weight: 700;
            color: #2c3e50;
        }
        .guide-table tr:nth-child(even) {
            background-color: #fafbfc;
        }

        /* Info Boxes */
        .tech-box, .compatibility-box, .safety-alert {
            padding: 20px 25px;
            margin: 35px 0;
            border-radius: 0 6px 6px 0;
        }
        .tech-box {
            background-color: #e3f2fd;
            border-left: 5px solid #2196f3;
        }
        .compatibility-box {
            background-color: #e8f5e9;
            border-left: 5px solid #4caf50;
        }
        .safety-alert {
            background-color: #ffebee;
            border-left: 5px solid #d32f2f;
        }

        /* FAQ Section */
        .faq-wrapper {
            margin-top: 50px;
            border-top: 2px solid #eaeaea;
            padding-top: 35px;
            background-color: #fafafa;
            padding: 30px;
            border-radius: 8px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
        }
        .faq-item {
            margin-bottom: 25px;
        }
        .faq-item:last-child {
            margin-bottom: 0;
        }
        .faq-question {
            display: block;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a1a1a;
            font-size: 18px !important;
        }
        .faq-answer {
            color: #444;
            margin: 0;
        }

        /* Lists */
        .fuji-standard-wrapper ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        .fuji-standard-wrapper li {
            margin-bottom: 10px;
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .fuji-standard-wrapper {
                padding: 15px;
            }
            .fuji-standard-wrapper h1 { font-size: 26px !important; }
            .fuji-standard-wrapper h2 { font-size: 22px !important; }
            .e-e-a-t-author { flex-direction: column; text-align: left; align-items: flex-start; }
            .e-e-a-t-author div { margin-left: 0; margin-top: 10px; }
            .tech-box, .compatibility-box, .safety-alert { padding: 15px; }
            .faq-wrapper { padding: 20px; }
        }
    