
    /* SCOPED CSS for Fuji Product Page - Modern & Responsive */
    #fuji-product-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #2c3e50;
        max-width: 1000px;
        margin: 0 auto;
        /* Removed top padding to eliminate top white space */
        padding: 0 20px 20px 20px;
        background-color: #ffffff;
    }

    /* Force the very first element inside the container to have zero top margin */
    #fuji-product-detail > :first-child {
        margin-top: 0 !important;
    }

    /* Trust Badge */
    .fuji-trust-badge {
        display: flex;
        align-items: center;
        background-color: #f8f9fa;
        border-left: 4px solid #ba0c2f;
        padding: 12px 20px;
        margin-bottom: 30px;
        font-size: 14px;
        color: #555;
        border-radius: 0 4px 4px 0;
    }
    .fuji-trust-badge strong {
        color: #111;
        margin-right: 5px;
    }

    /* Headings */
    #fuji-product-detail h2 {
        font-size: 24px;
        font-weight: 700;
        color: #111;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #fuji-product-detail h3 {
        font-size: 20px;
        font-weight: 600;
        color: #ba0c2f;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Paragraphs & Lists */
    #fuji-product-detail p {
        margin-bottom: 18px;
        text-align: justify;
    }

    #fuji-product-detail ul {
        margin-bottom: 25px;
        padding-left: 20px;
    }

    #fuji-product-detail li {
        margin-bottom: 12px;
    }

    /* Images - Responsive */
    #fuji-product-detail img {
        max-width: 100%;
        height: auto !important;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .image-caption {
        text-align: center;
        font-size: 14px;
        color: #7f8c8d;
        margin-top: -20px;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* Technical Table */
    .table-responsive {
        overflow-x: auto;
        margin: 25px 0;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 600px;
    }

    .tech-table th, .tech-table td {
        border: 1px solid #e2e8f0;
        padding: 15px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f8fafc;
        font-weight: 700;
        width: 35%;
        color: #1a202c;
    }
    
    .tech-table tr:hover {
        background-color: #fcfcfc;
    }

    /* Highlight Box for E-E-A-T Insights */
    .expert-insight-box {
        background-color: #fffaf0;
        border: 1px solid #ffedd5;
        border-left: 5px solid #f97316;
        padding: 20px 25px;
        margin: 35px 0;
        border-radius: 4px;
    }

    .expert-insight-box h4 {
        margin-top: 0;
        color: #c2410c;
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* FAQ Section */
    .faq-container {
        background-color: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        margin-top: 40px;
        border: 1px solid #e9ecef;
    }

    .faq-item {
        margin-bottom: 20px;
    }
    .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq-question {
        font-weight: 700;
        color: #111;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Internal Links */
    .internal-link {
        color: #0056b3;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #0056b3;
        transition: all 0.2s;
    }
    .internal-link:hover {
        color: #ba0c2f;
        border-bottom: 1px solid #ba0c2f;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-product-detail {
            /* Keep top padding 0 on mobile too */
            padding: 0 15px 15px 15px;
        }
        #fuji-product-detail h2 {
            font-size: 21px;
        }
        .tech-table th, .tech-table td {
            padding: 10px;
            font-size: 14px;
        }
        .expert-insight-box {
            padding: 15px;
        }
    }
