
        /* Scoped CSS for Content Isolation */
        .fuji-cut-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            max-width: 100%;
            margin: 0 auto;
        }

        /* Typography Reset */
        .fuji-cut-wrapper p, 
        .fuji-cut-wrapper li, 
        .fuji-cut-wrapper td, 
        .fuji-cut-wrapper th, 
        .fuji-cut-wrapper span, 
        .fuji-cut-wrapper a {
            font-size: 16px !important;
        }

        /* Headings optimized for hierarchy without H1 */
        .fuji-cut-wrapper h2 {
            font-size: 20px !important;
            font-weight: 700;
            color: #000;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
            line-height: 1.3;
            scroll-margin-top: 80px;
        }
        
        /* Remove top margin for the first header */
        .fuji-cut-wrapper h2:first-of-type {
            margin-top: 0 !important;
        }

        .fuji-cut-wrapper h3 {
            font-size: 18px !important;
            font-weight: 600;
            margin-top: 25px;
            margin-bottom: 10px;
            color: #444;
        }

        /* Link styling */
        .fuji-cut-wrapper a {
            color: #d32f2f;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        .fuji-cut-wrapper a:hover {
            text-decoration: underline;
            color: #b71c1c;
        }

        /* Image styling */
        .fuji-cut-wrapper img {
            max-width: 600px; 
            width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            loading: lazy;
        }

        /* Table Wrapper for Mobile Responsiveness */
        .table-wrapper {
            width: 100%;
            overflow-x: auto;
            margin: 15px 0;
            border-radius: 4px;
        }

        /* Selection Table Styling */
        .select-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #ddd;
            min-width: 500px;
        }
        .select-table th, .select-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .select-table th {
            background-color: #f4f4f4;
            font-weight: 700;
        }

        /* Info Box */
        .tip-box {
            background-color: #e3f2fd;
            border-left: 4px solid #2196f3;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .tip-box.warning {
            background-color: #fff3e0;
            border-left-color: #f57c00;
        }

        /* Product Card */
        .product-card {
            background-color: #fafafa;
            border: 1px solid #eee;
            border-left: 4px solid #d32f2f;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 6px 6px 0;
        }
        .product-card h3 {
            margin-top: 0;
            color: #d32f2f;
        }

        /* FAQ Section */
        .faq-wrapper {
            margin-top: 40px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        .faq-item {
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #f0f0f0;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .faq-question {
            display: block;
            font-weight: 700;
            margin-bottom: 6px;
            color: #000;
        }

        /* CTA Block */
        .cta-block {
            background-color: #f8f9fa;
            border-radius: 6px;
            padding: 25px;
            text-align: center;
            margin-top: 35px;
            border: 1px solid #e9ecef;
        }
        .cta-btn {
            display: inline-block;
            background-color: #d32f2f;
            color: #fff !important;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none !important;
            margin: 8px;
            transition: background-color 0.2s ease;
        }
        .cta-btn:hover {
            background-color: #b71c1c;
        }
        .cta-btn.secondary {
            background-color: transparent;
            color: #d32f2f !important;
            border: 2px solid #d32f2f;
        }
        .cta-btn.secondary:hover {
            background-color: #d32f2f;
            color: #fff !important;
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .fuji-cut-wrapper {
                padding: 0;
            }
            .fuji-cut-wrapper h2 {
                margin-top: 25px;
                font-size: 18px !important;
            }
            .tip-box {
                padding: 15px;
            }
            .product-card {
                padding: 15px;
            }
            .cta-btn {
                display: block;
                width: 100%;
                box-sizing: border-box;
                margin: 10px 0;
            }
        }
    