
    .fuji-article-container {
        font-family: 'Segoe UI', Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #2c3e50;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px 15px;
        background-color: #ffffff;
    }

    /* Author Trust Signal Box */
    .fuji-author-bio {
        display: flex;
        align-items: center;
        background-color: #f8f9fa;
        border-left: 4px solid #e60012;
        padding: 15px 20px;
        margin-bottom: 30px;
        border-radius: 0 6px 6px 0;
    }
    .fuji-author-bio p {
        margin: 0;
        font-size: 14px;
        color: #555;
    }
    .fuji-author-bio strong {
        color: #111;
        font-size: 16px;
        display: block;
        margin-bottom: 4px;
    }

    /* Headings */
    .fuji-article-container h2 {
        font-size: 26px;
        font-weight: 700;
        color: #111;
        margin-top: 45px;
        margin-bottom: 20px;
        border-bottom: 3px solid #e60012; 
        padding-bottom: 8px;
        scroll-margin-top: 100px; 
    }
    
    .fuji-article-container h3 {
        font-size: 20px;
        font-weight: 600;
        color: #e60012;
        margin-top: 30px;
        margin-bottom: 15px;
        background-color: #fdf2f3;
        padding: 10px 15px;
        border-radius: 4px;
    }

    .fuji-article-container p {
        margin-bottom: 18px;
        text-align: justify;
    }

    /* Links */
    .fuji-article-container a {
        color: #e60012; 
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #e60012;
        transition: all 0.2s;
    }
    .fuji-article-container a:hover {
        color: #b3000e;
        border-bottom: 1px solid #b3000e;
    }

    /* Images */
    .fuji-img-responsive {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 35px auto 15px auto;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .img-caption {
        text-align: center;
        font-size: 13.5px;
        color: #7f8c8d;
        margin-bottom: 35px;
        font-style: italic;
    }

    /* Table Styling */
    .table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border-radius: 6px;
    }
    .fuji-tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 600px;
    }
    .fuji-tech-table th, .fuji-tech-table td {
        border: 1px solid #e2e8f0;
        padding: 15px;
        text-align: left;
    }
    .fuji-tech-table th {
        background-color: #f8fafc;
        font-weight: 700;
        color: #1a202c;
    }
    .fuji-tech-table tr:nth-child(even) {
        background-color: #fafafa;
    }

    /* Lists */
    .fuji-list {
        margin-bottom: 25px;
        padding-left: 22px;
    }
    .fuji-list li {
        margin-bottom: 12px;
    }

    /* Insight Box */
    .insight-box {
        background-color: #f0f7ff;
        border: 1px solid #cce3f6;
        border-left: 5px solid #0056b3;
        padding: 22px;
        margin: 35px 0;
        border-radius: 4px;
        font-size: 15.5px;
    }
    .insight-box strong {
        color: #0056b3;
        font-size: 17px;
        display: block;
        margin-bottom: 10px;
    }

    /* FAQ Section */
    .fuji-faq-wrap {
        margin-top: 45px;
    }
    .fuji-faq-item {
        margin-bottom: 18px;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 20px 25px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .fuji-faq-question {
        font-weight: 700;
        font-size: 17px;
        color: #111;
        display: block;
        margin-bottom: 8px;
    }
    .fuji-faq-answer {
        color: #475569;
        font-size: 15.5px;
        margin: 0;
    }

    /* Call to Action */
    .fuji-cta-btn {
        display: inline-block;
        background-color: #e60012;
        color: #fff !important;
        padding: 14px 28px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 4px;
        text-align: center;
        text-decoration: none !important;
        border: none !important;
        margin-top: 20px;
        box-shadow: 0 4px 12px rgba(230,0,18,0.3);
        transition: background 0.3s ease;
    }
    .fuji-cta-btn:hover {
        background-color: #b3000e;
    }

    /* Mobile Optimization */
    @media screen and (max-width: 768px) {
        .fuji-article-container { padding: 15px; }
        .fuji-article-container h2 { font-size: 22px; }
        .fuji-article-container h3 { font-size: 18px; }
        .fuji-tech-table th, .fuji-tech-table td { padding: 10px; font-size: 14px; }
        .insight-box { padding: 15px; }
        .fuji-faq-item { padding: 15px; }
    }
