
    /* --- 1. FORCE FULL WIDTH & MAX PULL UP --- */
    .fuji-guide-wrapper-breakout {
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #fff;
        padding: 50px 0;
        border-top: none;
        
        /* UPDATED: Increased negative margin to pull up significantly on PC */
        margin-top: -120px; 
        z-index: 5; 
    }

    /* --- 2. Inner Container --- */
    .fuji-guide-container {
        width: 96%;
        max-width: 1440px; 
        margin: 0 auto;
        box-sizing: border-box;
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        color: #333;
    }

    /* --- 3. Header --- */
    .fuji-guide-main-title {
        font-size: 32px;
        font-weight: 800;
        color: #000;
        text-align: center;
        margin-bottom: 35px;
        line-height: 1.2;
    }

    /* --- 4. Intro Text --- */
    .fuji-guide-intro {
        font-size: 16px;
        color: #444;
        width: 100%; 
        max-width: 900px; 
        margin: 0 auto 50px auto;
        text-align: center; 
        line-height: 1.8; 
    }
    
    .fuji-guide-intro strong {
        color: #000;
        font-weight: 800; 
    }

    /* --- 5. Grid Layout --- */
    .fuji-guide-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .fuji-guide-col {
        flex: 1;
        min-width: 300px;
        background: #f9f9f9;
        padding: 30px;
        border-radius: 6px;
        border-top: 5px solid #ba372a; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        text-align: left;
    }

    .fuji-col-title {
        font-size: 20px;
        font-weight: 800;
        color: #ba372a;
        margin-bottom: 15px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .fuji-col-text {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
        text-align: justify;
    }

    /* Link Styling */
    .fuji-col-link {
        color: #ba372a;
        font-weight: 700;
        text-decoration: underline;
        transition: color 0.2s;
    }
    .fuji-col-link:hover {
        color: #000;
    }

    /* --- 6. Synergy Block --- */
    .fuji-synergy-block {
        text-align: left; 
        width: 100%; 
        margin: 0 0 50px 0;
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        padding: 25px;
        background-color: #f8f9fa; 
        border-left: 5px solid #000; 
        border-radius: 4px;
        box-sizing: border-box;
    }

    /* --- 7. Action Bar --- */
    .fuji-action-container {
        background-color: #fff;
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 6px;
        margin-bottom: 40px;
        text-align: left;
    }

    .fuji-primary-action-row {
        display: flex;
        align-items: center;
        justify-content: space-between; 
        gap: 30px;
        margin-bottom: 20px; 
        flex-wrap: wrap;
    }

    .fuji-primary-text {
        font-size: 16px;
        color: #333;
        font-weight: 700;
        line-height: 1.5;
        max-width: 70%; 
    }

    .fuji-bottom-btn {
        display: inline-block;
        background-color: #333;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        padding: 12px 35px;
        border-radius: 4px;
        text-decoration: none;
        transition: background 0.3s ease;
        text-transform: uppercase;
        white-space: nowrap; 
    }
    .fuji-bottom-btn:hover { background-color: #ba372a; }

    .fuji-secondary-link-row {
        font-size: 15px;
        color: #555;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }

    .fuji-text-link {
        color: #ba372a;
        text-decoration: underline;
        font-weight: 700;
    }
    .fuji-text-link:hover { color: #000; }

    /* --- 8. Mobile Optimization --- */
    @media (max-width: 900px) {
        .fuji-guide-wrapper-breakout {
            width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            left: 0 !important;
            right: 0 !important;
            padding: 40px 0;
            
            /* RESET margin on mobile to prevent overlap */
            margin-top: 0 !important; 
        }
        .fuji-guide-grid {
            flex-direction: column;
            gap: 20px;
        }
        .fuji-guide-main-title {
            font-size: 26px;
        }
        .fuji-guide-intro {
            text-align: justify; 
        }
        
        .fuji-primary-action-row { 
            flex-direction: column; 
            align-items: center;
            gap: 20px; 
            text-align: center;
        }
        .fuji-primary-text { 
            max-width: 100%; 
            text-align: center;
        }
        .fuji-bottom-btn { 
            width: auto !important; 
            max-width: 100%; 
            text-align: center;
            white-space: normal !important; 
            padding: 12px 25px !important;
        }
        .fuji-action-container {
            text-align: center; 
        }
    }
