
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-hgc-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-hgc-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Headings */
    #fuji-hgc-detail h2 {
        font-size: 22px;
        color: #000;
        border-bottom: 2px solid #b71c1c; /* Fuji Red */
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-hgc-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-hgc-detail h3 {
        font-size: 19px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
        border-left: 4px solid #b71c1c;
        padding-left: 15px;
    }

    /* Text & Lists */
    #fuji-hgc-detail p {
        margin-bottom: 15px;
        text-align: justify;
    }

    #fuji-hgc-detail ul {
        margin-bottom: 20px;
        padding-left: 20px;
        list-style-type: disc;
    }

    #fuji-hgc-detail li {
        margin-bottom: 8px;
    }

    /* Images - Optimized for Responsiveness */
    #fuji-hgc-detail img {
        display: block;
        height: auto !important;
        border-radius: 4px;
        margin: 25px auto;
    }

    /* Standard Product Image Class */
    .fuji-img-standard {
        max-width: 600px; /* Max width for PC */
        width: 100%;
    }

    /* Wide/Chart Image Class */
    .fuji-img-full {
        max-width: 1000px; /* Wider max-width for charts */
        width: 100%;
        border: 1px solid #eee;
    }

    /* Feature Grid */
    #fuji-hgc-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    #fuji-hgc-detail .feature-box {
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    #fuji-hgc-detail .feature-box strong {
        display: block;
        color: #b71c1c;
        margin-bottom: 10px;
        font-size: 17px;
    }

    /* Tech/Alert Box */
    #fuji-hgc-detail .tech-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    #fuji-hgc-detail .alert-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    #fuji-hgc-detail .note-text {
        font-size: 0.95em;
        color: #666;
        background: #f5f5f5;
        padding: 10px;
        border-radius: 4px;
    }

    /* Links */
    #fuji-hgc-detail a {
        color: #b71c1c;
        text-decoration: underline;
        font-weight: 600;
    }

    /* FAQ */
    #fuji-hgc-detail .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    #fuji-hgc-detail .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 5px;
        font-size: 17px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-hgc-detail .feature-grid {
            grid-template-columns: 1fr; /* Stack columns on mobile */
        }
        #fuji-hgc-detail h2 {
            font-size: 20px;
            margin-top: 30px;
        }
        #fuji-hgc-detail .article-container {
            padding: 15px;
        }
        .fuji-img-standard, .fuji-img-full {
            width: 100% !important; /* Force full width on mobile */
        }
    }
