
    /* --- GRID LAYOUT FOR CATEGORY LINKS --- */
    .fuji-grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 50px;
    }
    
    .fuji-grid-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: #fff;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    .fuji-card-link {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 25px 20px;
        text-decoration: none !important;
        color: inherit;
        box-sizing: border-box;
    }

    .fuji-grid-card:hover {
        border-color: #C41230;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .fuji-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        fill: #C41230;
    }

    .fuji-card-btn {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: bold;
        color: #C41230;
        border: 1px solid #C41230;
        border-radius: 4px;
        background: #fff;
        transition: 0.2s;
        text-transform: uppercase;
        display: inline-block;
    }

    .fuji-grid-card:hover .fuji-card-btn {
        background: #C41230;
        color: #fff;
    }

    /* --- PERFECT PAIRS CROSS-SELLING LAYOUT --- */
    .fuji-pairs-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 40px;
        align-items: stretch;
    }
    
    .fuji-pair-item {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 30px;
        background-color: #fafafa;
        text-decoration: none !important;
        color: #333 !important;
        box-sizing: border-box;
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .fuji-pair-item:hover {
        border-color: #C41230;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        background-color: #ffffff;
        transform: translateY(-4px);
    }
    
    .fuji-pair-title {
        font-size: 20px;
        margin: 0 0 15px 0;
        color: #111;
        font-weight: bold;
        line-height: 1.3;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .fuji-pair-desc {
        font-size: 15px;
        color: #555;
        margin: 0 0 25px 0;
        line-height: 1.6;
        flex-grow: 1;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .fuji-pair-action {
        font-size: 14px;
        font-weight: bold;
        color: #C41230;
        display: inline-block;
        border-bottom: 2px solid transparent;
        transition: border-color 0.3s;
        padding-bottom: 2px;
        margin-top: auto;
    }
    
    .fuji-pair-item:hover .fuji-pair-action {
        border-bottom: 2px solid #C41230;
    }

    /* --- WHY CHOOSE SECTION STYLES --- */
    .why-choose-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 50px;
        align-items: center;
    }
    .why-choose-text {
        flex: 1 1 400px;
    }
    .why-choose-points {
        flex: 1 1 300px;
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border-left: 5px solid #C41230;
    }

    /* --- BOTTOM CTA BANNER --- */
    .fuji-cta-banner {
        background-color: #222;
        color: #fff;
        padding: 40px 20px;
        text-align: center;
        border-radius: 8px;
        margin-top: 60px;
    }
    .fuji-cta-btn {
        display: inline-block;
        background-color: #C41230;
        color: #fff !important;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px;
        margin-top: 20px;
        transition: background 0.3s;
    }
    .fuji-cta-btn:hover {
        background-color: #a00e26;
    }

    /* --- RESPONSIVE BREAKPOINTS --- */
    @media (max-width: 1024px) {
        .fuji-grid-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .fuji-grid-container {
            grid-template-columns: 1fr;
        }
        .fuji-pairs-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .fuji-pair-item {
            padding: 25px 20px;
        }
        .why-choose-wrapper {
            flex-direction: column;
            gap: 20px;
        }
    }
