
    /* ... (CSS 样式保持不变) ... */
    /* --- Outer Container --- */
    .fuji-why-section-v24 {
        width: 92%;
        max-width: 1600px;
        margin: 0 auto;
        padding-top: 60px;
        padding-bottom: 60px;
        text-align: center;
    }

    /* --- Title Styling --- */
    .fuji-why-title-v24 {
        font-family: 'Oswald', 'Oswald-Regular', 'Impact', 'Arial Narrow', sans-serif !important;
        font-size: 40px;            /* Matches other sections */
        color: #333;
        font-weight: 500;
        margin-bottom: 50px;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    /* --- Grid Container --- */
    .fuji-why-grid-v24 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* --- Individual Item Card --- */
    .fuji-why-item-v24 {
        flex: 1;
        min-width: 220px;
        box-sizing: border-box;
        padding: 10px;
    }

    /* --- Circle Styling --- */
    .fuji-why-num-v24 {
        display: inline-block;
        font-family: 'Oswald', 'Oswald-Regular', 'Impact', 'Arial Narrow', sans-serif !important;
        width: 90px;
        height: 90px;
        line-height: 82px;
        font-size: 36px;
        border: 4px solid #CD0000; 
        color: #CD0000;
        border-radius: 50%;
        margin-bottom: 20px;
        background-color: #fff;
        transition: all 0.3s ease;
    }
    
    .fuji-why-item-v24:hover .fuji-why-num-v24 {
        background-color: #CD0000;
        color: #fff;
    }

    /* --- Sub-header --- */
    .fuji-why-h3-v24 {
        font-family: 'Oswald', 'Oswald-Regular', 'Impact', 'Arial Narrow', sans-serif !important;
        font-size: 22px;
        color: #222;
        font-weight: 500;
        margin: 15px 0 10px 0;
        line-height: 1.2;
    }

    /* --- Description Text (UPDATED) --- */
    .fuji-why-desc-v24 {
        font-family: 'Open Sans', 'Arial', sans-serif !important;
        font-size: 16px;            /* FIX: Changed from 14px to 16px */
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    /* --- Mobile Optimization (2x2 Grid) --- */
    @media screen and (max-width: 768px) {
        .fuji-why-section-v24 {
            padding-top: 40px;
            padding-bottom: 40px;
            width: 96%;
        }
        .fuji-why-title-v24 {
            font-size: 28px !important;
            margin-bottom: 30px;
        }
        
        .fuji-why-grid-v24 { gap: 10px; }
        
        .fuji-why-item-v24 {
            flex: 0 0 48%;
            min-width: 0;
            margin-bottom: 20px;
            padding: 0;
        }
        
        .fuji-why-num-v24 {
            width: 70px;
            height: 70px;
            line-height: 64px;
            font-size: 28px;
            border-width: 3px;
            margin-bottom: 10px;
        }
        
        .fuji-why-h3-v24 {
            font-size: 16px !important;
            margin: 5px 0;
            padding: 0 5px;
        }
        /* Mobile Text Size */
        .fuji-why-desc-v24 {
            font-size: 13px !important; /* Slightly increased for mobile readability too */
            line-height: 1.4;
            padding: 0 5px;
        }
    }
