
    /* SCOPED CSS: Modern, Responsive, Mobile-First and E-E-A-T Optimized */
    .fuji-product-wrapper { 
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
        font-size: 16px; 
        line-height: 1.65; 
        color: #333; 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0 15px 30px 15px; 
    }

    /* Trust & Author Bar for E-E-A-T */
    .fuji-trust-bar {
        background-color: #f8f9fa;
        border-left: 4px solid #b71c1c;
        padding: 12px 15px;
        margin-bottom: 30px;
        font-size: 14px;
        color: #555;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
        border-radius: 0 4px 4px 0;
    }
    .fuji-trust-bar strong { color: #222; }

    .fuji-product-wrapper h2 { 
        font-size: 24px; 
        font-weight: 700; 
        color: #111; 
        border-bottom: 2px solid #b71c1c; 
        padding-bottom: 8px; 
        margin-top: 40px; 
        margin-bottom: 20px; 
        letter-spacing: 0.5px;
    }
    .fuji-product-wrapper h2:first-of-type { margin-top: 0; }
    
    .fuji-product-wrapper h3 { 
        font-size: 19px; 
        font-weight: 600; 
        color: #b71c1c; 
        margin-top: 30px; 
        margin-bottom: 12px; 
    }

    .fuji-flex-container { 
        display: flex; 
        flex-wrap: wrap; 
        gap: 30px; 
        align-items: center; 
        margin-bottom: 35px; 
    }
    .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 4px 12px rgba(0,0,0,0.08);
    }
    .fuji-image-caption {
        display: block;
        font-size: 13px;
        color: #666;
        text-align: center;
        margin-top: 8px;
        font-style: italic;
    }

    .fuji-product-wrapper p { 
        margin-bottom: 18px; 
        text-align: left; 
    }

    .fuji-product-wrapper ul { 
        list-style-type: none; 
        padding-left: 0; 
        margin-bottom: 25px; 
    }
    .fuji-product-wrapper li { 
        margin-bottom: 12px; 
        position: relative; 
        padding-left: 28px;
    }
    .fuji-product-wrapper li::before {
        content: "✓";
        color: #b71c1c;
        position: absolute;
        left: 0;
        font-weight: bold;
        font-size: 18px;
    }

    /* Helpful Content Box */
    .fuji-helpful-box {
        background-color: #fffdf7;
        border: 1px solid #ffe082;
        padding: 25px;
        border-radius: 6px;
        margin: 30px 0;
    }
    .fuji-helpful-box h3 { color: #e65100; margin-top: 0; }
    .fuji-helpful-box li::before { content: "💡"; color: auto; font-size: 14px; top: 2px; }

    .fuji-table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border-radius: 6px;
        border: 1px solid #e0e0e0;
    }
    .fuji-table { 
        width: 100%; 
        border-collapse: collapse; 
        min-width: 600px; 
    }
    .fuji-table th, .fuji-table td { 
        border: 1px solid #e0e0e0; 
        padding: 15px; 
        text-align: left; 
    }
    .fuji-table th { 
        background-color: #f5f5f5; 
        font-weight: 700; 
        color: #111; 
    }
    .fuji-table tr:hover { background-color: #f9f9f9; }

    .fuji-link { 
        color: #b71c1c; 
        text-decoration: none; 
        font-weight: 600; 
        border-bottom: 1px dashed #b71c1c; 
        transition: all 0.3s ease; 
    }
    .fuji-link:hover { 
        color: #d32f2f;
        border-bottom: 1px solid #d32f2f; 
        background-color: #fff0f0;
    }
    
    .fuji-field-test {
        background-color: #f0f7f4;
        border-left: 5px solid #2e7d32;
        padding: 25px;
        margin: 35px 0;
        border-radius: 0 6px 6px 0;
    }
    .fuji-field-test h3 { color: #1b5e20; margin-top: 0; }
    .fuji-quote {
        font-style: italic;
        color: #444;
        border-left: 3px solid #a5d6a7;
        padding-left: 15px;
        margin-top: 20px;
    }

    .fuji-cta-box {
        background: linear-gradient(135deg, #111 0%, #333 100%);
        color: #fff;
        padding: 40px 20px;
        text-align: center;
        border-radius: 8px;
        margin-top: 50px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .fuji-cta-box h3 { color: #fff; margin-top: 0; font-size: 24px; border: none; }
    .fuji-cta-button {
        display: inline-block;
        background-color: #b71c1c;
        color: #fff !important;
        padding: 14px 35px;
        text-decoration: none !important;
        border-radius: 4px;
        font-weight: bold;
        font-size: 16px;
        text-transform: uppercase;
        margin-top: 20px;
        transition: all 0.3s ease;
        border: none;
    }
    .fuji-cta-button:hover { 
        background-color: #d32f2f; 
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .fuji-faq-item { 
        background-color: #fff; 
        padding: 20px; 
        margin-bottom: 15px; 
        border: 1px solid #eee;
        border-left: 4px solid #b71c1c; 
        border-radius: 0 4px 4px 0;
    }
    .fuji-faq-question { 
        font-weight: 700; 
        display: block; 
        margin-bottom: 10px; 
        font-size: 17px;
        color: #111;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-flex-container { flex-direction: column; gap: 20px; }
        .fuji-product-wrapper h2 { font-size: 21px; }
        .fuji-trust-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
        .fuji-cta-box { padding: 30px 15px; }
        .fuji-table th, .fuji-table td { padding: 10px; }
        .fuji-helpful-box, .fuji-field-test { padding: 15px; }
    }
