
    /* SCOPED CSS: Compact & Full Width Alignment */
    #fuji-super-z-content {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5;
        color: #333;
        font-size: 16px;
        background-color: #fff;
        max-width: 100%;
    }

    /* Container: FORCE FULL WIDTH & REMOVE TOP GAP */
    #fuji-super-z-content .article-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Typography */
    #fuji-super-z-content h2 {
        font-size: 22px;
        color: #b22222; /* FUJI Red */
        border-bottom: 2px solid #b22222;
        padding-bottom: 8px;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        clear: both;
    }

    /* SPECIFIC FIX: Remove margin from the very first header */
    #fuji-super-z-content h2:first-of-type {
        margin-top: 0;
    }

    #fuji-super-z-content h3 {
        font-size: 18px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    #fuji-super-z-content p {
        margin-bottom: 12px;
        text-align: justify;
        max-width: 100%;
    }

    #fuji-super-z-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    #fuji-super-z-content li {
        margin-bottom: 6px;
    }

    #fuji-super-z-content a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
        transition: all 0.3s ease;
    }

    #fuji-super-z-content a:hover {
        background-color: #fff0f0;
    }

    /* UNIFIED IMAGE STYLING */
    #fuji-super-z-content .media-wrapper {
        display: block;
        text-align: center;
        margin: 20px auto;
        width: 100%;
    }

    #fuji-super-z-content img {
        width: auto;      
        max-width: 100%;  
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        display: inline-block;
    }

    /* Image Sizes */
    #fuji-super-z-content .img-hero { max-width: 500px; }
    #fuji-super-z-content .img-small { max-width: 350px; }
    #fuji-super-z-content .img-wide { max-width: 600px; }

    /* Highlight Box */
    #fuji-super-z-content .highlight-box {
        background-color: #f9f9f9;
        border-left: 5px solid #b22222;
        padding: 15px;
        margin: 20px 0;
        border-radius: 0 4px 4px 0;
    }

    /* Data Table */
    #fuji-super-z-content .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
        border: 1px solid #ddd;
    }

    #fuji-super-z-content .spec-table th, 
    #fuji-super-z-content .spec-table td {
        padding: 10px 12px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-super-z-content .spec-table th {
        background-color: #f8f9fa;
        color: #b22222;
        width: 30%;
        font-weight: 700;
    }

    /* FAQ Section - COMPACT */
    #fuji-super-z-content .faq-item {
        margin-bottom: 10px;
        border: 1px solid #eee;
        padding: 12px 15px;
        border-radius: 4px;
        background-color: #fff;
    }

    #fuji-super-z-content .faq-question {
        font-weight: 700;
        color: #b22222;
        display: block;
        margin-bottom: 4px;
        font-size: 16px;
    }
    
    #fuji-super-z-content .faq-item p {
        margin-bottom: 0;
    }

    /* Separator Line */
    #fuji-super-z-content hr {
        border: 0;
        border-top: 1px solid #eee;
        margin: 30px 0;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-super-z-content .article-container { padding: 0; }
        #fuji-super-z-content h2 { font-size: 20px; margin-top: 25px; }
        #fuji-super-z-content .img-hero,
        #fuji-super-z-content .img-small,
        #fuji-super-z-content .img-wide { max-width: 100%; }
        #fuji-super-z-content .spec-table { display: block; overflow-x: auto; white-space: nowrap; }
        #fuji-super-z-content .spec-table th, 
        #fuji-super-z-content .spec-table td { padding: 8px; min-width: 120px; }
    }
