
    /* --- 1. FORCE FULL WIDTH (PC) --- */
    .fuji-guide-wrapper-breakout {
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #fff;
        padding: 50px 0;
        /* UPDATED: Removed top border as requested */
        border-top: none; 
        box-sizing: border-box;
    }

    /* --- 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 --- */
    .fuji-guide-intro {
        font-size: 16px;
        color: #444;
        width: 100%; 
        margin: 0 auto 50px auto;
        text-align: center; 
        line-height: 1.8; 
    }
    .fuji-guide-intro strong { color: #000; font-weight: 800; }

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

    .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;
    }

    /* Title Links */
    .fuji-col-title-link {
        font-size: 19px;
        font-weight: 800;
        color: #ba372a;
        margin-bottom: 15px;
        display: block;
        letter-spacing: 0.5px;
        text-decoration: none;
        transition: color 0.2s;
    }
    .fuji-col-title-link:hover { text-decoration: underline; color: #000; }

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

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

    /* --- 6. Synergy Block (Left Aligned) --- */
    .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 (Text Left, Button Right) --- */
    .fuji-action-container {
        background-color: #fff;
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 6px;
        margin-bottom: 40px;
        text-align: left;
    }

    /* Top Row: Flex with Space Between */
    .fuji-primary-action-row {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Button Right */
        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%; 
    }

    /* Button */
    .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; }

    /* Bottom Row: Secondary Link */
    .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 { 
            /* RESET PC positioning */
            width: 100% !important; 
            left: 0 !important; 
            right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 40px 0;
        }
        
        .fuji-guide-grid { 
            flex-direction: column; 
            gap: 20px; 
        }

        /* Stack text and button */
        .fuji-primary-action-row { 
            flex-direction: column; 
            align-items: center;
            gap: 20px; 
            text-align: center;
        }
        
        .fuji-primary-text { 
            max-width: 100%; 
            text-align: center;
        }
        
        /* Mobile Button: Auto width, fit content */
        .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; 
        }
    }
