
    /* --- 1. FORCE FULL WIDTH BACKGROUND --- */
    .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; 
    }

    /* --- 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 (CENTERED BLOCK) --- */
    .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; 
    }

    .fuji-highlight-red {
        color: #ba372a;
        font-weight: 900;
        font-size: 17px; 
    }

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

    .fuji-guide-col {
        flex: 1;
        min-width: 300px;
        background: #f9f9f9;
        padding: 30px;
        border-radius: 6px;
        border-top: 4px solid #ba372a; 
    }

    .fuji-col-title {
        font-size: 22px;
        font-weight: 700;
        color: #ba372a;
        margin-bottom: 20px;
        display: block;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    /* --- 6. Content Lists --- */
    .fuji-guide-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .fuji-guide-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
    }

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

    .fuji-guide-list li::before {
        content: '•';
        color: #ba372a;
        font-weight: bold;
        position: absolute;
        left: 0;
        font-size: 18px;
        line-height: 1.4;
    }

    /* --- 7. CTA Area --- */
    .fuji-guide-cta-box {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .fuji-guide-cta-text {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        display: block;
    }

    .fuji-bottom-btn {
        display: inline-block;
        background-color: #333;
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        padding: 14px 50px;
        border-radius: 4px;
        text-decoration: none;
        transition: background 0.3s ease;
        text-transform: uppercase;
    }

    .fuji-bottom-btn:hover {
        background-color: #ba372a; 
    }

    /* --- 8. Mobile Optimization --- */
    @media (max-width: 900px) {
        .fuji-guide-wrapper-breakout {
            /* Forced reset to prevent horizontal scrolling */
            width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            left: 0 !important;
            right: 0 !important;
            padding: 40px 0;
        }
        .fuji-guide-grid {
            flex-direction: column;
            gap: 20px;
        }
        .fuji-guide-main-title {
            font-size: 26px;
        }
        .fuji-guide-intro {
            text-align: justify; 
        }
        .fuji-bottom-btn {
            display: block;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }
    }
