
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-hgc250-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-hgc250-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 40px 15px;
    }

    /* Headings */
    #fuji-hgc250-detail h2 {
        font-size: 20px;
        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-hgc250-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-hgc250-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-hgc250-detail p {
        margin-bottom: 15px;
        text-align: justify;
    }

    /* Links */
    #fuji-hgc250-detail a {
        color: #b71c1c;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Grid Layout for Features */
    #fuji-hgc250-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns on PC */
        gap: 20px;
        margin-bottom: 30px;
    }

    #fuji-hgc250-detail .feature-box {
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 6px;
        transition: transform 0.2s ease;
    }
    
    #fuji-hgc250-detail .feature-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    #fuji-hgc250-detail .feature-box strong {
        display: block;
        color: #b71c1c;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Images */
    #fuji-hgc250-detail img {
        display: block;
        max-width: 100%;
        height: auto !important;
        border-radius: 4px;
        margin: 20px auto;
        border: 1px solid #eee;
    }
    
    #fuji-hgc250-detail .img-small {
        max-width: 500px; /* Limit size for product shots */
    }

    /* Tech Spec Table */
    #fuji-hgc250-detail .table-wrapper {
        overflow-x: auto; /* Horizontal scroll on mobile */
        margin-bottom: 30px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    #fuji-hgc250-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px; /* Force width to ensure readability */
    }

    #fuji-hgc250-detail th, #fuji-hgc250-detail td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 15px;
    }

    #fuji-hgc250-detail th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #000;
    }

    /* Note & Alert Boxes */
    #fuji-hgc250-detail .note-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 15px;
        margin: 20px 0;
        font-size: 15px;
    }
    
    #fuji-hgc250-detail .tech-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 15px;
        margin: 20px 0;
    }

    /* FAQ */
    #fuji-hgc250-detail .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    #fuji-hgc250-detail .faq-q {
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-hgc250-detail .feature-grid {
            grid-template-columns: 1fr; /* 1 column on mobile */
        }
        #fuji-hgc250-detail .article-container {
            padding: 0 10px 30px 10px;
        }
    }
