
    /* SCOPED CSS for Consistency & Compactness */
    .fuji-product-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.5; /* Slightly tighter line height */
        color: #333;
        max-width: 100%;
        margin: 0 auto;
        padding: 10px; /* Reduced padding */
    }

    /* Headings */
    .fuji-product-detail h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #ddd;
        padding-bottom: 8px;
        margin-top: 30px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }
    
    .fuji-product-detail h2:first-of-type {
        margin-top: 0; /* No top margin for first header */
    }

    .fuji-product-detail h3 {
        font-size: 18px;
        font-weight: 600;
        color: #C41230; /* Fuji Red */
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* Paragraphs & Lists */
    .fuji-product-detail p {
        margin-bottom: 12px;
        text-align: justify;
    }

    .fuji-product-detail ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .fuji-product-detail li {
        margin-bottom: 8px;
    }

    /* Advantage Grid */
    .advantage-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .advantage-card {
        flex: 1 1 45%; /* Two per row on PC */
        background: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #C41230;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .advantage-title {
        display: block;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #000;
    }

    /* Table Styling */
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 100%; /* Ensure full width */
        font-size: 15px;
        margin-bottom: 20px;
    }

    .spec-table td {
        padding: 10px;
        border: 1px solid #ddd;
    }

    .spec-label {
        font-weight: 700;
        background-color: #f5f5f5;
        width: 40%;
        color: #000;
    }

    /* Images */
    .fuji-product-detail img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }

    /* Safety Box */
    .safety-box {
        background-color: #fff8e1;
        border: 1px solid #ffe082;
        padding: 15px;
        border-radius: 6px;
        margin: 25px 0;
    }

    /* CTA Box */
    .cta-box {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        padding: 25px;
        text-align: center;
        margin-top: 30px;
        border-radius: 8px;
    }

    .cta-link {
        color: #c41230;
        text-decoration: underline;
        font-weight: 700;
        margin: 0 10px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .advantage-card {
            flex: 1 1 100%; /* Stack on mobile */
        }
        .fuji-product-detail h2 {
            font-size: 18px;
            margin-top: 25px;
        }
    }
