
    /* SCOPED CSS for Fuji Product Page */
    #fuji-product-detail {
        font-family: 'Verdana', 'Segoe UI', sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Headings */
    #fuji-product-detail h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 10px;
        margin-top: 30px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    #fuji-product-detail h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    /* Paragraphs & Lists */
    #fuji-product-detail p {
        margin-bottom: 15px;
        text-align: justify;
    }

    #fuji-product-detail ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    #fuji-product-detail li {
        margin-bottom: 10px;
    }

    /* Images - Responsive */
    #fuji-product-detail img {
        max-width: 100%;
        height: auto !important;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Technical Table */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }

    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        width: 40%;
    }

    /* FAQ Section */
    .faq-container {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }

    /* Internal Links */
    .internal-link {
        color: #0056b3;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-product-detail {
            padding: 10px;
        }
        .tech-table th, .tech-table td {
            padding: 8px;
            font-size: 14px;
        }
    }
