
    /* --- FUJI INDUSTRIAL STYLESHEET (OPTIMIZED) --- */
    .fuji-product-container {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px; /* Base font size 16px */
        line-height: 1.6;
        color: #333;
        /* Layout Constraint: Prevent full-screen stretch */
        max-width: 1200px; 
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        background-color: #fff;
    }

    /* Headings */
    .fuji-product-container h2 {
        font-size: 22px; /* Slightly larger for main sections */
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #b71c1c; /* Fuji Red */
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    .fuji-first-heading { margin-top: 0 !important; }

    .fuji-product-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 15px;
        border-left: 4px solid #b71c1c;
        padding-left: 15px;
    }

    /* Text & Lists */
    .fuji-product-container p { margin-bottom: 15px; text-align: justify; }
    .fuji-product-container ul { margin-bottom: 20px; padding-left: 20px; list-style-type: disc; }
    .fuji-product-container li { margin-bottom: 8px; font-size: 16px; }

    /* --- IMAGE HANDLING --- */
    .fuji-figure { margin: 30px 0; text-align: center; }
    
    /* Standard Product Images */
    .fuji-img-responsive {
        max-width: 600px; /* Controlled width for standard images */
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Chart/Table Images - ALLOWED TO BE WIDER */
    .fuji-img-chart {
        max-width: 1000px !important; /* Wider specifically for data charts */
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border: 1px solid #eee; /* Add border for white charts */
    }

    .fuji-caption {
        font-size: 14px;
        color: #666;
        margin-top: 8px;
        font-style: italic;
        display: block;
    }

    /* Comparison & Tech Boxes */
    .fuji-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    .fuji-feature-box {
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 6px;
    }
    .fuji-feature-box strong {
        display: block;
        color: #b71c1c;
        margin-bottom: 10px;
        font-size: 18px;
    }

    /* Critical Alert Box */
    .fuji-alert-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }
    .fuji-alert-title { 
        font-weight: bold; 
        font-size: 18px; 
        display: block; 
        margin-bottom: 10px; 
        color: #e65100; 
    }

    /* Tables - Scrollable & Clean */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .fuji-tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 700px; /* Forces scroll on mobile */
        font-size: 16px;
    }
    .fuji-tech-table th, .fuji-tech-table td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
    }
    .fuji-tech-table th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #000;
    }

    /* FAQ */
    .fuji-faq-item { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
    .fuji-faq-q { font-weight: 700; display: block; margin-bottom: 5px; font-size: 17px; }

    /* Mobile Media Query */
    @media (max-width: 768px) {
        .fuji-feature-grid { grid-template-columns: 1fr; }
        .fuji-product-container h2 { font-size: 20px; margin-top: 30px; }
        .fuji-img-chart { width: 100% !important; } /* Full width on mobile */
    }
