.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

        
.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

        
.stat-card:hover {
    transform: translateY(-3px);
}

        
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
}

        
.stat-label {
    color: #666;
    margin-top: 0.5rem;
}


@media (max-width: 768px) {
            
    .stats-section {
        grid-template-columns: 1fr;
    }
}