
    /* Scoped Responsive CSS for FUJI FS-B10E */
    .fuji-product-container {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #333;
        max-width: 1100px;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 15px 15px 15px; /* Removed top padding to avoid blank space */
    }
    .fuji-product-container h2 {
        font-size: 24px;
        font-weight: bold;
        color: #111;
        border-bottom: 2px solid #ba372a;
        padding-bottom: 10px;
        margin-top: 30px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .fuji-product-container h2:first-of-type {
        margin-top: 0; /* Ensures no gap at the very top */
    }
    .fuji-product-container h3 {
        font-size: 18px;
        font-weight: bold;
        color: #222;
        margin-bottom: 15px;
    }
    .fuji-product-container p {
        margin-bottom: 18px;
    }
    .fuji-product-container a {
        transition: all 0.3s ease;
    }
    .fuji-feature-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }
    .fuji-feature-box {
        flex: 1 1 calc(50% - 20px);
        min-width: 280px;
        background: #fdfdfd;
        padding: 25px;
        border-left: 5px solid #ba372a;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        box-sizing: border-box;
    }
    .fuji-insight-box {
        background-color: #f4f7f6;
        border-left: 5px solid #2e7d32;
        padding: 25px;
        margin: 35px 0;
        border-radius: 0 6px 6px 0;
    }
    .fuji-table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .fuji-table-wrapper table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        border: 1px solid #ddd;
        text-align: left;
    }
    .fuji-table-wrapper th {
        background-color: #f4f4f4;
        padding: 15px;
        border: 1px solid #ddd;
        font-weight: bold;
    }
    .fuji-table-wrapper td {
        padding: 14px;
        border: 1px solid #ddd;
    }
    .fuji-img-responsive {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }
    @media (max-width: 768px) {
        .fuji-feature-grid {
            flex-direction: column;
        }
        .fuji-feature-box {
            flex: 1 1 100%;
        }
    }
