
    /* Scoped CSS for Fuji Blog Post */
    .fuji-blog-content {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        margin-top: 0;
        padding-top: 0;
    }
    .fuji-blog-content h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        border-bottom: 2px solid #e60012; /* Fuji Red Brand Color */
        padding-bottom: 5px;
    }
    .fuji-blog-content p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .fuji-blog-content a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
    }
    .fuji-blog-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    /* Comparison Table Styling */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }
    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }
    .tech-table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #000;
    }
    /* Mobile Responsive Table */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    /* Expert Tip Box */
    .expert-tip {
        background-color: #f0f7ff;
        border-left: 5px solid #0056b3;
        padding: 15px;
        margin: 20px 0;
        font-style: italic;
    }
    /* FAQ Section */
    .faq-item {
        margin-bottom: 20px;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 5px;
    }
    .faq-question {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }
    /* Remove top gap */
    .fuji-blog-content > *:first-child {
        margin-top: 0;
    }
