
    /* --- Blog Container --- */
    .fuji-blog-wrapper {
        font-family: 'Open Sans', 'Segoe UI', Helvetica, sans-serif;
        color: #333;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        font-size: 16px;
    }

    /* --- Typography --- */
    .fuji-blog-wrapper h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 32px;
        color: #000;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .fuji-blog-wrapper h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 26px;
        color: #005bb5;
        margin-top: 50px;
        margin-bottom: 20px;
        font-weight: 700;
        border-left: 6px solid #000;
        padding-left: 15px;
    }

    .fuji-blog-wrapper h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 20px;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .fuji-blog-wrapper h4 {
        font-size: 18px;
        color: #005bb5;
        font-weight: 700;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .fuji-blog-wrapper p {
        margin-bottom: 20px;
        text-align: justify;
    }

    /* --- Links --- */
    .fuji-blog-link {
        color: #005bb5;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.2s;
    }
    .fuji-blog-link:hover {
        color: #000;
    }

    /* --- Images (RESPONSIVE FIX) --- */
    .fuji-blog-img-figure {
        margin: 35px 0;
        text-align: center;
        display: block;
    }
    
    .fuji-blog-img {
        display: block;
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0 auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        object-fit: contain;
    }
    
    .fuji-img-caption {
        font-size: 14px;
        color: #666;
        margin-top: 10px;
        font-style: italic;
        display: block;
        text-align: center;
    }

    /* --- Feature Lists --- */
    .fuji-tech-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }
    .fuji-tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
    }
    .fuji-tech-list li::before {
        content: "➤";
        color: #005bb5;
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 14px;
    }
    .fuji-tech-list strong {
        color: #000;
    }

    /* --- Numbered Lists (Custom) --- */
    .fuji-num-list {
        counter-reset: fuji-counter;
        list-style: none;
        padding: 0;
    }
    .fuji-num-list li {
        position: relative;
        padding-left: 40px;
        margin-bottom: 20px;
    }
    .fuji-num-list li::before {
        counter-increment: fuji-counter;
        content: counter(fuji-counter);
        background-color: #005bb5;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        text-align: center;
        line-height: 24px;
        position: absolute;
        left: 0;
        top: 0;
    }

    /* --- Special Boxes --- */
    .fuji-info-box {
        background-color: #f0f7ff;
        border-left: 5px solid #005bb5;
        padding: 20px;
        margin: 25px 0;
    }

    .fuji-warning-box {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
    }

    /* --- FAQ Section --- */
    .fuji-faq-container {
        background-color: #f9f9f9;
        padding: 30px;
        border-radius: 8px;
        margin-top: 40px;
    }
    .fuji-faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }
    .fuji-faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .fuji-question {
        font-weight: 700;
        color: #005bb5;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* --- CTA Button --- */
    .fuji-cta-block {
        text-align: center;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 2px solid #eee;
    }
    .fuji-btn-primary {
        display: inline-block;
        background-color: #005bb5;
        color: #fff !important;
        padding: 16px 45px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        box-shadow: 0 4px 6px rgba(0,91,181,0.2);
    }
    .fuji-btn-primary:hover {
        background-color: #002a5c;
    }

    @media (max-width: 600px) {
        .fuji-blog-wrapper h1 { font-size: 26px; }
        .fuji-blog-wrapper h2 { font-size: 22px; }
        .fuji-btn-primary { width: 100%; box-sizing: border-box; }
    }
