
    /* Use same font settings as Part 1 */
    .fuji-guide-wrapper {
        width: 100%;
        background-color: #fff;
        padding: 50px 0;
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        color: #333;
    }
    .fuji-guide-container {
        width: 96%;
        max-width: 1400px; /* Same max-width as Part 1 */
        margin: 0 auto;
    }
    .fuji-guide-title {
        font-size: 32px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 30px;
        color: #000;
    }
    .fuji-guide-intro {
        text-align: center;
        max-width: 1000px;
        margin: 0 auto 50px auto;
        font-size: 16px;
        line-height: 1.8;
    }
    
    /* Grid System */
    .fuji-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .fuji-col {
        flex: 1 1 300px;
        background: #f9f9f9;
        padding: 30px;
        border-radius: 6px;
        border-top: 5px solid #ba372a;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .fuji-col-title {
        font-size: 20px;
        font-weight: 800;
        color: #ba372a;
        margin-bottom: 15px;
        display: block;
        text-decoration: none;
    }
    .fuji-col-title:hover {
        color: #000;
        text-decoration: underline;
    }
    .fuji-col-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
    }

    /* Synergy Box */
    .fuji-synergy {
        background: #f8f9fa;
        padding: 25px;
        border-left: 5px solid #000;
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 1.8;
    }

    /* Action Bar */
    .fuji-action-box {
        background: #fff;
        border: 1px solid #eee;
        padding: 30px;
        border-radius: 6px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .fuji-action-text {
        font-size: 16px;
        font-weight: 700;
        max-width: 70%;
    }
    .fuji-action-btn {
        background: #333;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        padding: 12px 40px;
        border-radius: 4px;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
    }
    .fuji-action-btn:hover {
        background: #ba372a;
    }
    .fuji-footer-link {
        font-size: 15px;
        color: #555;
        margin-top: 15px;
        display: block;
    }
    .fuji-link-std {
        color: #ba372a;
        font-weight: 700;
        text-decoration: underline;
    }

    @media (max-width: 900px) {
        .fuji-action-box { flex-direction: column; text-align: center; }
        .fuji-action-text { max-width: 100%; }
        .fuji-action-btn { width: 100%; text-align: center; display: block; }
    }
