
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-hgc180-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-hgc180-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 40px 15px;
    }

    /* Headings */
    #fuji-hgc180-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-hgc180-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-hgc180-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-hgc180-detail p {
        margin-bottom: 15px;
        text-align: justify;
    }

    /* Links */
    #fuji-hgc180-detail a {
        color: #b71c1c;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Images - Responsive Global Settings */
    #fuji-hgc180-detail img {
        display: block;
        max-width: 100%;
        height: auto !important; /* Maintain aspect ratio */
        border-radius: 4px;
        margin: 20px auto;
        border: 1px solid #eee;
        box-sizing: border-box; /* Prevent padding from breaking layout */
    }
    
    #fuji-hgc180-detail .img-medium {
        max-width: 600px; /* Limit width for cleaner PC view */
    }

    /* Performance Section */
    #fuji-hgc180-detail .perf-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
        align-items: center;
    }

    /* Model Section Styling */
    #fuji-hgc180-detail .model-box {
        background: #f9f9f9;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 30px;
    }

    #fuji-hgc180-detail .model-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    #fuji-hgc180-detail .badge {
        background: #b71c1c;
        color: #fff;
        padding: 4px 8px;
        border-radius: 3px;
        font-size: 14px;
        font-weight: bold;
    }

    /* Tech Spec Table */
    #fuji-hgc180-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        border: 1px solid #ddd;
    }

    #fuji-hgc180-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 700px; /* Force width */
    }

    #fuji-hgc180-detail th, #fuji-hgc180-detail td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 15px;
    }

    #fuji-hgc180-detail th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #000;
    }

    /* Tech Note Box */
    #fuji-hgc180-detail .tech-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 15px;
        margin: 20px 0;
    }

    /* FAQ */
    #fuji-hgc180-detail .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    #fuji-hgc180-detail .faq-q {
        font-weight: 700;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization - STRICT FORCE */
    @media (max-width: 768px) {
        #fuji-hgc180-detail .perf-grid {
            grid-template-columns: 1fr; /* Stack on mobile */
        }
        #fuji-hgc180-detail .article-container {
            padding: 0 10px 30px 10px;
        }
        /* Force all images to fit screen width */
        #fuji-hgc180-detail img {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
        }
    }
