
    /* SCOPED CSS: Ensures compatibility and compact design */
    #fuji-za-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5;
        color: #333;
        font-size: 16px;
        background-color: #fff;
    }

    /* Container */
    #fuji-za-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px;
    }

    /* Headings */
    #fuji-za-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #d32f2f; /* Fuji Red Accent */
        padding-bottom: 5px;
        margin-top: 25px;
        margin-bottom: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-za-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-za-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    #fuji-za-detail p {
        margin-bottom: 10px;
        text-align: justify;
    }

    /* Links */
    #fuji-za-detail a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #d32f2f;
    }

    /* Grid Layout for Advantages (Compact) */
    #fuji-za-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on PC */
        gap: 15px;
        margin-bottom: 20px;
    }

    #fuji-za-detail .feature-item {
        background: #f9f9f9;
        padding: 12px;
        border: 1px solid #eee;
        border-radius: 4px;
        font-size: 15px;
    }

    #fuji-za-detail .feature-item strong {
        color: #d32f2f;
        display: block;
        margin-bottom: 5px;
    }

    /* Images */
    #fuji-za-detail .media-wrapper {
        text-align: center;
        margin: 15px 0;
    }

    #fuji-za-detail .media-wrapper img {
        max-width: 600px; /* Limit max width for cleaner PC look */
        width: 100%; /* Responsive for mobile */
        height: auto;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* Comparison Table (Scrollable) */
    #fuji-za-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }

    #fuji-za-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }

    #fuji-za-detail th, 
    #fuji-za-detail td {
        padding: 8px 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-za-detail th {
        background-color: #f4f4f4;
        font-weight: 700;
        color: #000;
    }

    /* FAQ Box */
    #fuji-za-detail .faq-item {
        background: #fff;
        border-left: 4px solid #d32f2f;
        padding: 10px 15px;
        margin-bottom: 10px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    #fuji-za-detail .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-za-detail .feature-grid {
            grid-template-columns: 1fr; /* 1 Column on Mobile */
            gap: 10px;
        }
        #fuji-za-detail h2 {
            font-size: 18px;
            margin-top: 20px;
        }
    }
