
    /* --- Main Guide Container --- */
    .fuji-bottom-guide-wrapper {
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        color: #333;
        line-height: 1.6;
        padding: 40px 0; /* Reduced padding from 50px */
        background-color: #fff;
        width: 96%;
        max-width: 1440px; 
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* --- Headings --- */
    .fuji-guide-main-title {
        font-size: 30px; /* Slightly smaller for compact look */
        font-weight: 800;
        color: #000;
        text-align: center;
        margin-bottom: 30px; /* Reduced margin from 40px */
        position: relative;
        line-height: 1.2;
    }
    
    .fuji-guide-main-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #ba372a; 
        margin: 12px auto 0;
    }

    .fuji-guide-section-title {
        font-size: 22px;
        font-weight: 700;
        color: #ba372a; 
        margin-bottom: 15px; /* Reduced from 20px */
        border-left: 4px solid #333;
        padding-left: 12px;
    }

    /* --- Section 1: Core Advantages (Cards) --- */
    .fuji-types-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 20px; /* Tighter gap */
        margin-bottom: 35px; /* Reduced from 50px to bring sections closer */
    }

    .fuji-type-card {
        background-color: #f9f9f9;
        padding: 20px; /* Reduced padding inside cards */
        border-radius: 6px;
        border-top: 3px solid #ccc;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .fuji-type-card:hover {
        transform: translateY(-3px);
        border-top-color: #ba372a;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .fuji-type-card h4 {
        font-size: 17px;
        margin-top: 0;
        margin-bottom: 10px;
        color: #000;
        font-weight: 700;
    }

    .fuji-type-card p {
        font-size: 14px;
        color: #555;
        margin: 0;
        line-height: 1.5;
    }

    /* --- Section 2: Technical Selection (Compact) --- */
    .fuji-selection-container {
        margin-bottom: 35px; /* Reduced from 50px */
        background-color: #f4f4f4; 
        padding: 25px; /* Reduced padding */
        border-radius: 8px;
    }

    .fuji-grit-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px 30px; /* Tighter vertical gap */
    }

    .fuji-grit-item {
        font-size: 15px;
        color: #444;
        padding-bottom: 8px;
        border-bottom: 1px solid #ddd;
        display: block; 
    }

    .fuji-grit-item strong {
        color: #ba372a; 
        font-weight: 700;
        margin-right: 5px; 
    }

    /* --- Section 3: Applications & Slogan (Merged) --- */
    .fuji-app-box {
        text-align: center;
        margin-bottom: 25px;
        font-size: 15px;
        color: #555;
        background-color: #fff;
        padding: 5px;
        line-height: 1.8;
    }

    /* --- Bottom CTA Button --- */
    .fuji-bottom-cta-wrapper {
        text-align: center;
        margin-top: 15px;
    }

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

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

    /* --- Mobile Responsiveness --- */
    @media (max-width: 900px) {
        .fuji-types-grid {
            grid-template-columns: 1fr; 
            gap: 15px;
        }

        .fuji-grit-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .fuji-guide-main-title {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .fuji-bottom-btn {
            display: block;
            width: 100%;
            box-sizing: border-box;
        }
    }
