
    /* --- 1. FORCE FULL WIDTH BACKGROUND --- */
    .fuji-hero-wrapper-breakout {
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #fff;
        padding: 50px 0;
        border-bottom: none;
    }

    /* --- 2. Inner Container --- */
    .fuji-hero-container {
        width: 96%;
        max-width: 1440px; 
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch; 
        justify-content: flex-start;
        gap: 50px; 
    }

    /* --- 3. Left Side: Floating White Box --- */
    .fuji-hero-image {
        flex: 0 0 42%; 
        max-width: 650px; 
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border: 1px solid #f5f5f5; 
        border-radius: 12px; 
        box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
        min-height: 450px; 
        box-sizing: border-box;
        padding: 0; 
    }

    .fuji-hero-image img {
        width: 98%; 
        height: auto;
        max-height: 98%; 
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
        object-fit: contain;
    }

    /* --- 4. Right Side: Text Content --- */
    .fuji-hero-content {
        flex: 1; 
        min-width: 350px; 
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        color: #333;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .fuji-hero-content h2 {
        font-size: 34px; 
        font-weight: 800;
        color: #000;
        margin-top: 0;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .fuji-hero-subhead {
        font-size: 20px;
        font-weight: 700;
        color: #ba372a; 
        margin-bottom: 20px;
        display: block;
        font-style: italic;
    }

    .fuji-hero-intro {
        font-size: 16px;
        color: #444;
        margin-bottom: 20px;
        text-align: justify;
        line-height: 1.6;
    }
    
    .fuji-hero-intro strong {
        color: #000;
        font-weight: 700;
    }

    .fuji-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .fuji-feature-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #333;
        font-size: 16px;
    }

    .fuji-feature-list li strong {
        color: #000;
        font-weight: 700;
    }

    .fuji-feature-list li::before {
        content: '•'; 
        position: absolute;
        left: 0;
        top: 0px;
        color: #ba372a; 
        font-weight: 900;
        font-size: 18px;
    }

    .fuji-setup-detail {
        font-size: 15px;
        color: #333;
        background: #f8f9fa;
        padding: 15px 20px;
        border-radius: 4px;
        margin-bottom: 20px;
        border-left: 5px solid #ba372a;
        line-height: 1.6;
    }

    .fuji-setup-detail strong {
        color: #ba372a;
    }
    
    .fuji-text-link {
        color: #ba372a;
        text-decoration: underline;
        font-weight: 700;
        transition: color 0.2s;
    }
    .fuji-text-link:hover {
        color: #000;
    }

    /* --- BUTTON & LINK WRAPPER (New Layout) --- */
    .fuji-btn-row {
        display: flex;
        align-items: center; /* Vertically align button and link */
        gap: 20px; /* Space between button and link */
        flex-wrap: wrap;
    }

    .fuji-btn-quote {
        display: inline-block; 
        background-color: #f4c01e; 
        color: #000;
        font-weight: 800;
        font-size: 16px;
        padding: 12px 30px; 
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        width: fit-content; 
    }

    .fuji-btn-quote:hover {
        background-color: #dcb311;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        color: #000;
    }

    .fuji-scroll-link {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        color: #555;
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    .fuji-scroll-link:hover {
        color: #ba372a;
    }

    /* Mobile Optimization */
    @media (max-width: 900px) { 
        .fuji-hero-wrapper-breakout {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            left: 0;
            right: 0;
        }
        .fuji-hero-container {
            flex-direction: column;
            gap: 25px;
        }
        .fuji-hero-image {
            flex: 1 1 100%;
            max-width: 100%;
            min-height: auto; 
            aspect-ratio: 1/1; 
            padding: 0 !important;
        }
        .fuji-hero-image img {
            width: 98% !important; 
            max-width: 98% !important;
        }
        /* Mobile: Stack button and link */
        .fuji-btn-row {
            flex-direction: column;
            width: 100%;
            gap: 15px;
        }
        .fuji-btn-quote {
            display: block;
            text-align: center;
            width: 100%; 
            box-sizing: border-box;
        }
        .fuji-scroll-link {
            display: block;
            text-align: center;
        }
    }
