
    /* Scoped CSS for Blog Content - Ensures PC/Mobile adaptation */
    .fuji-blog-content {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 0 !important;
    }

    /* Headings - IDs removed to allow auto-TOC to work */
    .fuji-blog-content h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        border-bottom: 2px solid #e60012; 
        padding-bottom: 5px;
    }

    .fuji-blog-content h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .fuji-blog-content p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .fuji-blog-content ul {
        margin-bottom: 20px;
        padding-right: 20px; /* Adjust for RTL */
    }

    .fuji-blog-content li {
        margin-bottom: 8px;
    }

    .fuji-blog-content a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
    }

    /* Responsive Images */
    .fuji-blog-content img {
        max-width: 100%;
        height: auto !important;
        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: right; /* Adjust for RTL */
    }
    .tech-table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #000;
    }
    .table-container {
        overflow-x: auto;
    }

    /* FAQ Section */
    .faq-container {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        margin-top: 30px;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    .faq-question {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .fuji-blog-content {
            font-size: 15px;
            line-height: 1.5;
        }
    }
