
    /* Global Styles for Blog Content */
    .fuji-blog-container {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    /* Remove top margin for the first element */
    .fuji-blog-container > *:first-child {
        margin-top: 0 !important;
    }

    /* Headings (Strictly under 20px per constraints) */
    .fuji-blog-container h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 5px solid #d32f2f; /* Fuji Red */
        padding-left: 10px;
        line-height: 1.3;
    }

    .fuji-blog-container h3 {
        font-size: 18px !important;
        font-weight: 600;
        color: #d32f2f;
        margin-top: 25px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    /* Paragraphs and Lists */
    .fuji-blog-container p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .fuji-blog-container ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .fuji-blog-container li {
        margin-bottom: 8px;
    }

    /* Links */
    .fuji-blog-container a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.2s ease;
    }
    
    .fuji-blog-container a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Images */
    .fuji-blog-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Data Tables */
    .table-wrapper {
        overflow-x: auto;
        margin: 20px 0;
    }

    .tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 600px; /* Ensures readability on mobile scroll */
    }

    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #000;
    }

    /* Expert Tip Box */
    .expert-tip {
        background-color: #e3f2fd;
        border-left: 4px solid #2196f3;
        padding: 15px;
        margin: 20px 0;
        font-size: 15px;
        border-radius: 0 4px 4px 0;
    }

    /* FAQ Section */
    .faq-container {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 6px;
        margin-top: 30px;
        border: 1px solid #eee;
    }
    
    .faq-item {
        margin-bottom: 20px;
    }
    
    .faq-item:last-child {
        margin-bottom: 0;
    }
    
    .faq-question {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }
    
    .faq-answer {
        color: #444;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .fuji-blog-container p {
            text-align: left;
        }
        .fuji-blog-container h2 {
            font-size: 18px !important;
        }
        .tech-table {
            min-width: 100%;
        }
    }
