
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-nfg-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
        max-width: 100%;
    }

    /* Container */
    #fuji-nfg-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 40px 15px;
    }

    /* Headings */
    #fuji-nfg-detail h2 {
        font-size: 20px; /* Max 20px limit */
        color: #000;
        border-bottom: 2px solid #b71c1c; /* Fuji Red */
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 25px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #fuji-nfg-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-nfg-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 700;
        border-left: 4px solid #b71c1c;
        padding-left: 10px;
    }

    #fuji-nfg-detail p {
        margin-bottom: 15px;
        text-align: justify;
    }

    /* Links */
    #fuji-nfg-detail a {
        color: #b71c1c;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Images - Responsive */
    #fuji-nfg-detail img {
        display: block;
        max-width: 100%;
        height: auto !important;
        border-radius: 4px;
        margin: 20px auto;
        border: 1px solid #eee;
    }

    #fuji-nfg-detail .img-small { max-width: 400px; }
    #fuji-nfg-detail .img-medium { max-width: 700px; }

    /* Feature Grid System */
    #fuji-nfg-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    #fuji-nfg-detail .feature-box {
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 6px;
        transition: transform 0.2s ease;
    }
    
    #fuji-nfg-detail .feature-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    #fuji-nfg-detail .feature-box strong {
        display: block;
        color: #b71c1c;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Efficiency Section (Text + Image) */
    #fuji-nfg-detail .eff-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
        margin-bottom: 30px;
    }

    /* Tech Note Box */
    #fuji-nfg-detail .tech-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 15px;
        margin: 20px 0;
    }

    /* Export Note */
    #fuji-nfg-detail .alert-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 15px;
        margin: 20px 0;
    }

    /* FAQ */
    #fuji-nfg-detail .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    #fuji-nfg-detail .faq-q {
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-nfg-detail .feature-grid,
        #fuji-nfg-detail .eff-container {
            grid-template-columns: 1fr; /* Stack on mobile */
        }
        #fuji-nfg-detail .article-container {
            padding: 0 10px 30px 10px;
        }
    }
