
    .funds-section {
        padding: 60px 0;
        background: #f3f4f6;
    }
    
    .funds-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .funds-header h2 {
        font-size: 36px;
        font-weight: 900;
        color: #1e3a8a;
        margin-bottom: 12px;
    }
    
    .funds-header p {
        font-size: 16px;
        color: #6b7280;
        max-width: 550px;
        margin: 15px auto 0;
        line-height: 1.6;
    }
    
    .funds-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .fund-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
    }
    
    .fund-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }
    
    .fund-icon-wrapper {
        display: flex;
        justify-content: center;
        padding: 20px 20px 15px;
    }
    
    .fund-icon-box {
        width: 75px;
        height: 75px;
        background: #1e40af;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    }
    
    .fund-icon-box i {
        font-size: 38px;
        color: white;
    }
    
    .fund-body {
        padding: 0 20px 20px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .fund-title {
        font-size: 18px;
        font-weight: 900;
        color: #1e3a8a;
        margin-bottom: 15px;
        line-height: 1.3;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .fund-stats-compact {
        display: flex;
        justify-content: space-around;
        margin-bottom: 14px;
        padding: 10px 0;
        border-top: 1px solid #f3f4f6;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .fund-stat-item {
        text-align: center;
    }
    
    .fund-stat-number {
        font-size: 16px;
        font-weight: 900;
        color: #1e40af;
        display: block;
        margin-bottom: 3px;
    }
    
    .fund-stat-text {
        font-size: 10px;
        color: #6b7280;
        font-weight: 600;
    }
    
    .fund-progress {
        margin-bottom: 14px;
    }
    
    .fund-progress-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
        font-size: 11px;
    }
    
    .fund-collected {
        color: #10b981;
        font-weight: 800;
    }
    
    .fund-target {
        color: #6b7280;
        font-weight: 600;
    }
    
    .fund-progress-bar {
        width: 100%;
        height: 5px;
        background: #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .fund-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #10b981, #34d399);
        transition: width 0.5s ease;
    }
    
    .fund-progress-percent {
        text-align: center;
        margin-top: 4px;
        font-size: 9px;
        color: #6b7280;
        font-weight: 600;
    }
    
    .fund-donate-btn {
        width: 100%;
        padding: 11px;
        background: #002d5b;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: auto;
    }
    
    .fund-donate-btn:hover {
        background: #1e3a8a;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(30, 64, 175, 0.25);
    }
    
    @media (max-width: 768px) {
        .funds-section {
            padding: 40px 0;
        }
        
        .funds-header h2 {
            font-size: 28px;
        }
        
        .funds-header p {
            font-size: 14px;
        }
        
        .funds-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
            gap: 15px;
        }
        
        .fund-title {
            font-size: 18px;
            min-height: auto;
        }
        
        .fund-icon-box {
            width: 70px;
            height: 70px;
        }
        
        .fund-icon-box i {
            font-size: 34px;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .funds-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1025px) and (max-width: 1280px) {
        .funds-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (min-width: 1281px) {
        .funds-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
