
    /* Scoped CSS to prevent affecting surrounding modules */
    .fuji-blog-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.8;
        color: #333333;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .fuji-blog-wrapper > *:first-child {
        margin-top: 0 !important;
    }

    .fuji-blog-wrapper h2 {
        font-size: 20px;
        font-weight: 700;
        color: #111111;
        margin: 30px 0 15px 0;
        padding-bottom: 8px;
        border-bottom: 2px solid #e0e0e0;
        line-height: 1.4;
    }

    .fuji-blog-wrapper h3 {
        font-size: 18px;
        font-weight: 600;
        color: #222222;
        margin: 25px 0 10px 0;
        line-height: 1.4;
    }

    .fuji-blog-wrapper p {
        margin-bottom: 16px;
    }

    .fuji-blog-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .fuji-blog-wrapper a:hover {
        color: #9a0000;
        text-decoration: underline;
    }

    .fuji-blog-wrapper ul {
        margin: 0 0 20px 20px;
        padding: 0;
    }

    .fuji-blog-wrapper li {
        margin-bottom: 10px;
    }

    .fuji-blog-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* Comparison Table Styling */
    .fuji-blog-wrapper .comparison-box {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px 0;
    }

    .fuji-blog-wrapper .spec-card {
        flex: 1 1 300px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 20px;
    }

    /* FAQ Section Styling */
    .fuji-blog-wrapper .faq-section {
        margin-top: 40px;
        background-color: #fcfcfc;
        padding: 25px;
        border-radius: 8px;
        border-left: 4px solid #d32f2f;
    }

    .fuji-blog-wrapper .faq-item {
        margin-bottom: 20px;
    }

    .fuji-blog-wrapper .faq-item:last-child {
        margin-bottom: 0;
    }

    .fuji-blog-wrapper .faq-question {
        font-weight: 700;
        color: #111;
        margin-bottom: 8px;
        font-size: 16px;
    }

    @media (max-width: 768px) {
        .fuji-blog-wrapper .comparison-box {
            flex-direction: column;
        }
        .fuji-blog-wrapper h2 {
            font-size: 18px;
        }
        .fuji-blog-wrapper h3 {
            font-size: 16px;
        }
    }
