
    /* SCOPED CSS: Ensures no conflict with site template & Compact Design */
    #fuji-starflex-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5;
        color: #333;
        font-size: 16px;
        background-color: #fff;
    }

    /* Container */
    #fuji-starflex-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 20px 20px 20px;
    }

    /* Typography */
    #fuji-starflex-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #0056b3; /* Professional Blue */
        padding-bottom: 5px;
        margin-top: 25px;
        margin-bottom: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    #fuji-starflex-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-starflex-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 4px solid #0056b3;
        padding-left: 10px;
    }

    #fuji-starflex-detail p {
        margin-bottom: 10px;
        text-align: justify;
    }

    /* Links */
    #fuji-starflex-detail a {
        color: #0056b3;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #0056b3;
    }

    /* Grid Layout for Advantages (Compact) */
    #fuji-starflex-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on PC */
        gap: 15px;
        margin-bottom: 20px;
    }

    #fuji-starflex-detail .feature-item {
        background: #f8faff;
        padding: 12px;
        border: 1px solid #e0e6ed;
        border-radius: 4px;
        font-size: 15px;
    }

    #fuji-starflex-detail .feature-item strong {
        color: #0056b3;
        display: block;
        margin-bottom: 5px;
    }

    /* Images */
    #fuji-starflex-detail .media-wrapper {
        text-align: center;
        margin: 15px 0;
    }

    #fuji-starflex-detail .media-wrapper img {
        max-width: 600px;
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    /* Comparison Table (Scrollable) */
    #fuji-starflex-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }

    #fuji-starflex-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Force width to ensure readability on mobile */
        font-size: 15px;
    }

    #fuji-starflex-detail th, 
    #fuji-starflex-detail td {
        padding: 8px 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-starflex-detail th {
        background-color: #eef2f6; /* Light Blue */
        font-weight: 700;
        color: #000;
    }

    /* FAQ Box */
    #fuji-starflex-detail .faq-item {
        background: #fff;
        border-left: 4px solid #0056b3;
        padding: 10px 15px;
        margin-bottom: 10px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    #fuji-starflex-detail .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-starflex-detail .feature-grid {
            grid-template-columns: 1fr; /* 1 Column on Mobile */
            gap: 10px;
        }
        #fuji-starflex-detail h2 {
            font-size: 18px;
            margin-top: 20px;
        }
    }
