.stats-section {
    background-color: var(--light-background);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-description {
    font-size: 16px;
    line-height: 1.5;
}

.stat-source {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
}
