
    /* SCOPED CSS: Only affects content inside .fuji-expert-blog */
    .fuji-expert-blog {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.7;
        max-width: 960px;
        margin: 0 auto;
        padding: 0 30px 30px 30px;
        box-sizing: border-box;
        background-color: #ffffff;
    }

    /* Strict control over the top element to prevent blank space */
    .fuji-expert-blog > *:first-child {
        margin-top: 0 !important;
    }

    /* Typography */
    .fuji-expert-blog p, 
    .fuji-expert-blog li, 
    .fuji-expert-blog td, 
    .fuji-expert-blog th {
        font-size: 16px;
    }

    .fuji-expert-blog h2 {
        font-size: 22px;
        font-weight: 700;
        margin-top: 35px;
        margin-bottom: 15px;
        color: #1a365d;
        border-bottom: 2px solid #e2e8f0;
        padding-bottom: 8px;
        line-height: 1.3;
        text-transform: capitalize;
    }

    .fuji-expert-blog h3 {
        font-size: 19px;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 12px;
        color: #2b6cb0;
        border-left: 4px solid #c53030;
        padding-left: 10px;
    }

    /* Links */
    .fuji-expert-blog a {
        color: #c53030;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #c53030;
        transition: all 0.2s ease-in-out;
    }
    .fuji-expert-blog a:hover {
        background-color: #fff5f5;
        color: #9b2c2c;
    }

    /* Images */
    .fuji-expert-blog img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    /* Table Styles */
    .fuji-expert-blog .table-wrapper {
        overflow-x: auto;
        margin: 25px 0;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
        border-radius: 6px;
    }
    .fuji-expert-blog .spec-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
        min-width: 600px; /* Ensures readability on mobile scroll */
    }
    .fuji-expert-blog .spec-table th, 
    .fuji-expert-blog .spec-table td {
        border: 1px solid #e2e8f0;
        padding: 14px 15px;
        text-align: left;
    }
    .fuji-expert-blog .spec-table th {
        background-color: #f8fafc;
        font-weight: 600;
        width: 35%;
        color: #1a365d;
    }

    /* Lists */
    .fuji-expert-blog ul, 
    .fuji-expert-blog ol {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    .fuji-expert-blog li {
        margin-bottom: 10px;
    }

    /* Highlight & CTA Boxes */
    .fuji-expert-blog .insight-box {
        background-color: #f0f4f8;
        border-left: 5px solid #2b6cb0;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 4px 4px 0;
    }

    .fuji-expert-blog .cta-box {
        background-color: #fff5f5;
        border: 1px solid #fed7d7;
        padding: 25px;
        margin: 35px 0;
        border-radius: 6px;
        text-align: center;
    }
    .fuji-expert-blog .cta-box h3 {
        border-left: none;
        padding-left: 0;
        margin-top: 0;
        color: #c53030;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-expert-blog {
            padding: 0 15px 20px 15px;
        }
        .fuji-expert-blog h2 {
            font-size: 20px;
            margin-top: 25px;
        }
        .fuji-expert-blog h3 {
            font-size: 18px;
        }
        .fuji-expert-blog p {
            text-align: left;
        }
        .fuji-expert-blog .insight-box, 
        .fuji-expert-blog .cta-box {
            padding: 15px;
        }
    }
