
    /* --- Global & Typography --- */
    .fuji-news-container {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        color: #333;
        line-height: 1.7;
        max-width: 1200px;
        margin: 0 auto;
        overflow-x: hidden;
        background-color: #fff;
    }
    .fuji-news-container h2 {
        font-size: 24px;
        font-weight: 800;
        color: #000;
        margin: 40px 0 20px 0;
        border-bottom: 2px solid #d32f2f;
        padding-bottom: 10px;
    }
    .fuji-news-container h2:first-of-type {
        margin-top: 10px;
    }
    .fuji-news-container h3 {
        font-size: 20px;
        font-weight: 700;
        color: #d32f2f;
        margin: 30px 0 15px 0;
    }
    .fuji-news-container p {
        margin-bottom: 18px;
        text-align: justify;
    }
    .fuji-news-container a {
        color: #d32f2f;
        text-decoration: underline;
        font-weight: bold;
    }
    
    /* --- Author / Director Quote Section --- */
    .director-quote {
        background-color: #f8f9fa;
        border-left: 5px solid #d32f2f;
        padding: 20px 25px;
        margin: 30px 0;
        font-style: italic;
        color: #444;
        font-size: 17px;
        border-radius: 0 8px 8px 0;
    }

    /* --- Image Gallery --- */
    .image-gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0;
        justify-content: center;
    }
    .gallery-item {
        flex: 1;
        min-width: 300px;
        max-width: 48%;
    }
    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .gallery-item p {
        font-size: 14px;
        text-align: center;
        color: #666;
        margin-top: 8px;
        font-weight: bold;
    }

    /* --- Feature List --- */
    .fuji-features {
        background-color: #fff;
        border: 1px solid #eee;
        padding: 25px 30px;
        border-radius: 8px;
        margin: 30px 0;
        box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    }
    .fuji-features ul {
        padding-left: 20px;
        margin: 0;
    }
    .fuji-features li {
        margin-bottom: 12px;
        font-size: 16px;
    }

    /* --- FAQ Section --- */
    .faq-wrapper {
        margin-top: 40px;
    }
    .faq-item {
        background-color: #fafafa;
        border: 1px solid #eaeaea;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 15px;
    }
    .faq-question {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* --- FIXED CTA SECTION --- */
    .fuji-cta-box {
        background-color: #1a1a1a; /* Dark background to ensure visibility */
        color: #ffffff;
        text-align: center;
        padding: 40px 20px;
        border-radius: 8px;
        margin-top: 50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .fuji-cta-box p {
        color: #e0e0e0;
        font-size: 18px;
        margin-bottom: 25px;
        text-align: center;
    }
    .fuji-cta-btn {
        background-color: #d32f2f;
        color: #ffffff !important;
        padding: 14px 35px;
        text-decoration: none !important;
        font-weight: bold;
        font-size: 18px;
        border-radius: 50px;
        display: inline-block;
        transition: background-color 0.3s ease;
        border: 2px solid #d32f2f;
    }
    .fuji-cta-btn:hover {
        background-color: #fff;
        color: #d32f2f !important;
    }

    /* --- Mobile Optimization --- */
    @media (max-width: 768px) {
        .gallery-item { max-width: 100%; }
        .fuji-features { padding: 20px; }
        .fuji-cta-box { padding: 30px 15px; }
        .fuji-news-container h2 { font-size: 20px; }
    }
