
    /* Scoped CSS for Fuji Blog - Safety & Performance Post */
    .fuji-article-container {
        font-family: 'Segoe UI', Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 0;
    }

    /* Headings */
    .fuji-article-container h2 {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        margin-top: 40px;
        margin-bottom: 20px;
        border-bottom: 2px solid #e60012; /* Fuji Red Brand Color */
        padding-bottom: 8px;
        position: relative;
    }

    .fuji-article-container h3 {
        font-size: 19px;
        font-weight: 600;
        color: #444;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Anchor Fix */
    .fuji-anchor {
        position: absolute;
        top: -100px;
        visibility: hidden;
    }

    /* Text & Lists */
    .fuji-article-container p {
        margin-bottom: 18px;
        text-align: justify;
    }

    .fuji-article-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
        background-color: #f9f9f9;
        padding: 20px 20px 20px 40px;
        border-radius: 5px;
    }

    .fuji-article-container li {
        margin-bottom: 10px;
    }

    /* Links */
    .fuji-article-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
        transition: opacity 0.3s;
    }
    .fuji-article-container a:hover {
        opacity: 0.8;
    }

    /* Images */
    .fuji-article-container img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 25px auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Comparison Table Styles */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .fuji-tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    
    .fuji-tech-table th, 
    .fuji-tech-table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
        font-size: 15px;
    }
    
    .fuji-tech-table th {
        background-color: #333;
        color: #fff;
        font-weight: bold;
    }

    /* Pro-Tip Box */
    .fuji-tip-box {
        background-color: #eef6fc;
        border-left: 5px solid #1976d2;
        padding: 20px;
        margin: 25px 0;
        font-size: 15px;
    }

    /* FAQ Section Styles */
    .fuji-faq-item {
        background: #fdfdfd;
        border: 1px solid #eee;
        border-left: 5px solid #e60012;
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 4px;
    }
    
    .fuji-faq-question {
        display: block;
        font-weight: bold;
        font-size: 17px;
        color: #000;
        margin-bottom: 8px;
    }

    /* Utility */
    .fuji-article-container > *:first-child {
        margin-top: 0;
    }
