
    /* SCOPED CSS: Ensures no conflict with site template & Compact Design */
    #fuji-resinox-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
    }

    #fuji-resinox-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 15px;
    }

    #fuji-resinox-detail h2 {
        font-size: 22px;
        color: #000;
        border-bottom: 2px solid #d32f2f;
        padding-bottom: 8px;
        margin-top: 35px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    #fuji-resinox-detail h2:first-of-type { margin-top: 0; }

    #fuji-resinox-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    #fuji-resinox-detail p { margin-bottom: 15px; text-align: justify; }

    #fuji-resinox-detail a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid transparent;
        transition: border-bottom 0.2s;
    }
    #fuji-resinox-detail a:hover { border-bottom: 1px solid #d32f2f; }

    /* Grid Layout for Advantages */
    #fuji-resinox-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    #fuji-resinox-detail .feature-item {
        background: #fdfdfd;
        padding: 15px;
        border: 1px solid #eaeaea;
        border-radius: 6px;
        font-size: 15px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    }

    #fuji-resinox-detail .feature-item strong {
        color: #d32f2f;
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
    }

    /* Field Test Box (NEW) */
    #fuji-resinox-detail .field-test-box {
        background: #f4f7f6;
        border-left: 5px solid #2e7d32;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 6px 6px 0;
    }
    #fuji-resinox-detail .field-test-box h3 {
        color: #2e7d32;
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Images */
    #fuji-resinox-detail .media-wrapper {
        text-align: center;
        margin: 20px 0;
    }

    #fuji-resinox-detail .media-wrapper img {
        max-width: 600px;
        width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    }

    /* Comparison Table */
    #fuji-resinox-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 25px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    #fuji-resinox-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }

    #fuji-resinox-detail th, 
    #fuji-resinox-detail td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-resinox-detail th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #222;
    }

    /* FAQ Box */
    #fuji-resinox-detail .faq-item {
        background: #fff;
        border-left: 4px solid #d32f2f;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    #fuji-resinox-detail .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-resinox-detail .feature-grid { grid-template-columns: 1fr; }
        #fuji-resinox-detail h2 { font-size: 20px; }
        #fuji-resinox-detail .field-test-box { padding: 15px; }
    }
