
    /* SCOPED CSS: Modern, Responsive, and E-E-A-T Optimized */
    .fuji-product-wrapper { 
        font-family: 'Segoe UI', Verdana, Arial, sans-serif; 
        font-size: 16px; 
        line-height: 1.6; 
        color: #333; 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0 15px 30px 15px; 
    }
    .fuji-product-wrapper h2 { 
        font-size: 22px; 
        font-weight: 700; 
        color: #111; 
        border-bottom: 2px solid #b71c1c; 
        padding-bottom: 8px; 
        margin-top: 40px; 
        margin-bottom: 20px; 
        text-transform: uppercase;
    }
    .fuji-product-wrapper h2:first-of-type { margin-top: 0; }
    .fuji-product-wrapper h3 { 
        font-size: 18px; 
        font-weight: 600; 
        color: #b71c1c; 
        margin-top: 25px; 
        margin-bottom: 12px; 
    }
    .fuji-flex-container { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 30px; 
        align-items: center; 
        margin-bottom: 30px; 
    }
    .fuji-flex-item { 
        flex: 1 1 calc(50% - 15px); 
        min-width: 300px; 
    }
    .fuji-product-wrapper img { 
        max-width: 100%; 
        height: auto; 
        display: block; 
        margin: 0 auto; 
        border-radius: 6px; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .fuji-product-wrapper p { 
        margin-bottom: 15px; 
        text-align: justify; 
    }
    .fuji-product-wrapper ul { 
        list-style-type: none; 
        padding-left: 0; 
        margin-bottom: 20px; 
    }
    .fuji-product-wrapper li { 
        margin-bottom: 10px; 
        position: relative; 
        padding-left: 25px;
    }
    .fuji-product-wrapper li::before {
        content: "✓";
        color: #b71c1c;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    .fuji-table-wrapper {
        overflow-x: auto;
        margin: 25px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border-radius: 6px;
    }
    .fuji-table { 
        width: 100%; 
        border-collapse: collapse; 
        min-width: 600px; 
    }
    .fuji-table th, .fuji-table td { 
        border: 1px solid #ddd; 
        padding: 14px; 
        text-align: left; 
    }
    .fuji-table th { 
        background-color: #f8f9fa; 
        font-weight: bold; 
        color: #111; 
    }
    .fuji-table tr:nth-child(even) { background-color: #fcfcfc; }
    .fuji-link { 
        color: #b71c1c; 
        text-decoration: none; 
        font-weight: 700; 
        border-bottom: 1px solid transparent;
        transition: border-bottom 0.2s;
    }
    .fuji-link:hover { border-bottom: 1px solid #b71c1c; }
    
    /* Field Test Module */
    .fuji-field-test {
        background-color: #f4f7f6;
        border-left: 5px solid #2e7d32;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 6px 6px 0;
    }
    .fuji-field-test h3 { color: #2e7d32; margin-top: 0; }

    /* CTA Module */
    .fuji-cta-box {
        background-color: #111;
        color: #fff;
        padding: 30px;
        text-align: center;
        border-radius: 8px;
        margin-top: 40px;
    }
    .fuji-cta-box h3 { color: #fff; margin-top: 0; font-size: 24px;}
    .fuji-cta-button {
        display: inline-block;
        background-color: #b71c1c;
        color: #fff !important;
        padding: 12px 30px;
        text-decoration: none !important;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 15px;
        transition: background 0.3s;
    }
    .fuji-cta-button:hover { background-color: #d32f2f; }

    /* FAQ Module */
    .fuji-faq-item { 
        background-color: #fff; 
        padding: 15px; 
        margin-bottom: 15px; 
        border-left: 4px solid #b71c1c; 
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    .fuji-faq-question { 
        font-weight: 700; 
        display: block; 
        margin-bottom: 8px; 
        font-size: 16px;
    }

    @media (max-width: 768px) {
        .fuji-flex-container { flex-direction: column; }
        .fuji-product-wrapper h2 { font-size: 20px; }
        .fuji-cta-box { padding: 20px; }
    }
