
    /* Global Container Settings - Adjusted for RTL */
    .fuji-blog-wrapper { 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
        font-size: 16px; 
        line-height: 1.7; 
        color: #333; 
        max-width: 100%; 
        margin: 0 auto; 
        background-color: #fff;
        text-align: right; /* RTL Alignment */
    }
    .fuji-blog-wrapper > *:first-child { margin-top: 0 !important; padding-top: 0 !important; }
    
    /* Headings */
    .fuji-blog-wrapper h2 { 
        font-size: 22px; 
        font-weight: 700; 
        color: #e60012; 
        margin-top: 40px; 
        margin-bottom: 20px; 
        border-bottom: 2px solid #e60012; 
        padding-bottom: 10px; 
        position: relative;
        padding-right: 15px; /* Right padding for RTL marker */
        padding-left: 0;
    }
    .fuji-blog-wrapper h2::before {
        content: '';
        position: absolute;
        right: 0; /* Right aligned marker */
        top: 5px;
        bottom: 5px;
        width: 4px;
        background-color: #333;
    }

    .fuji-blog-wrapper h3 { font-size: 19px; font-weight: 600; color: #333; margin-top: 30px; margin-bottom: 15px; }
    
    /* Text & Lists */
    .fuji-blog-wrapper p { margin-bottom: 18px; text-align: justify; }
    .fuji-blog-wrapper ul { 
        background: #f9f9f9; 
        padding: 20px 40px 20px 20px; /* Adjusted padding for RTL bullets */
        border-radius: 6px; 
        border-right: 4px solid #ddd; /* Right border for RTL */
        border-left: none;
        margin-bottom: 25px; 
    }
    .fuji-blog-wrapper li { margin-bottom: 10px; }
    .fuji-blog-wrapper a { color: #e60012; text-decoration: underline; font-weight: 600; }
    
    /* Video Wrapper */
    .video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; margin-bottom: 30px; background: #000; border-radius: 8px; overflow: hidden; }
    .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

    /* Tech Grid */
    .tech-grid { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
    .tech-item { flex: 1 1 300px; background: #fff; border: 1px solid #eee; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-top: 3px solid #e60012; }
    .tech-item strong { display: block; font-size: 17px; margin-bottom: 10px; color: #e60012; }

    /* Tables */
    .table-responsive { overflow-x: auto; margin: 25px 0; }
    .test-result-table { width: 100%; border-collapse: collapse; min-width: 600px; }
    .test-result-table th, .test-result-table td { border: 1px solid #ddd; padding: 12px; text-align: center; }
    .test-result-table th { background-color: #333; color: #fff; }
    .test-result-table tr:nth-child(even) { background-color: #f9f9f9; }

    /* Contact & FAQ */
    .contact-box { 
        background-color: #f4f4f4; 
        padding: 20px; 
        border-radius: 5px; 
        border-right: 5px solid #e60012; /* Right border for RTL */
        border-left: none;
        margin-top: 30px; 
    }
    .faq-item { background: #fafafa; border: 1px solid #eee; padding: 15px; margin-bottom: 15px; border-radius: 4px; }
    .faq-q { font-weight: bold; color: #000; display: block; margin-bottom: 5px; }
    
    @media (max-width: 600px) { .tech-item { flex: 1 1 100%; } }
