
    /* SCOPED CSS: Ensures clean integration with your global template */
    #fuji-super-w-v2 {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
    }

    /* Container: FULL ALIGNMENT FIX */
    #fuji-super-w-v2 .article-container {
        width: 100%;
        max-width: 100%; /* Forces full alignment */
        margin: 0;
        padding: 0; /* Removed padding to align with tabs */
        box-sizing: border-box;
    }

    /* Typography */
    #fuji-super-w-v2 h2 {
        font-size: 22px;
        color: #b22222; /* FUJI Red */
        border-bottom: 2px solid #b22222;
        padding-bottom: 10px;
        margin-top: 30px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        clear: both;
    }

    /* FIX: Remove margin from the very first heading to kill the gap */
    #fuji-super-w-v2 h2:first-of-type {
        margin-top: 0;
    }

    #fuji-super-w-v2 h3 {
        font-size: 18px;
        color: #444;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
        border-left: 4px solid #b22222;
        padding-left: 10px;
    }

    #fuji-super-w-v2 p {
        margin-bottom: 15px;
        text-align: justify;
    }

    #fuji-super-w-v2 ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    #fuji-super-w-v2 li {
        margin-bottom: 8px;
    }

    #fuji-super-w-v2 a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
        transition: all 0.3s ease;
    }

    #fuji-super-w-v2 a:hover {
        background-color: #fff0f0;
    }

    /* UNIFIED IMAGE STYLING */
    #fuji-super-w-v2 .media-wrapper {
        display: block;
        text-align: center;
        margin: 30px auto;
        width: 100%;
    }

    #fuji-super-w-v2 img {
        width: auto;      
        max-width: 100%;  
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        display: inline-block;
    }

    /* Smart Image Sizing for PC */
    #fuji-super-w-v2 .img-hero { max-width: 600px; }
    #fuji-super-w-v2 .img-spec { max-width: 650px; }
    #fuji-super-w-v2 .img-pack { max-width: 350px; margin-right: 20px; vertical-align: middle;}

    /* Highlight Box */
    #fuji-super-w-v2 .highlight-box {
        background-color: #f9f9f9;
        border-left: 5px solid #b22222;
        padding: 20px;
        margin: 25px 0;
    }

    /* Advantage Grid */
    #fuji-super-w-v2 .advantage-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    #fuji-super-w-v2 .advantage-item {
        background: #fdfdfd;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 4px;
    }

    /* Data Table */
    #fuji-super-w-v2 .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
        border: 1px solid #ddd;
    }

    #fuji-super-w-v2 .spec-table th, 
    #fuji-super-w-v2 .spec-table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-super-w-v2 .spec-table th {
        background-color: #f8f9fa;
        color: #b22222;
        width: 30%;
        font-weight: 600;
    }

    /* FAQ Section */
    #fuji-super-w-v2 .faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 5px;
        background-color: #fff;
    }

    #fuji-super-w-v2 .faq-question {
        font-weight: bold;
        color: #b22222;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-super-w-v2 .article-container { padding: 0; }
        #fuji-super-w-v2 .advantage-grid { grid-template-columns: 1fr; }
        #fuji-super-w-v2 .spec-table { display: block; overflow-x: auto; white-space: nowrap; }
        #fuji-super-w-v2 .spec-table th, 
        #fuji-super-w-v2 .spec-table td { padding: 10px; min-width: 120px; }
        #fuji-super-w-v2 .img-pack { margin-right: 0; margin-bottom: 15px; display: block; width: 100%; }
        #fuji-super-w-v2 .img-hero { width: 100%; }
    }
