/* -- Stats -- */
.stats {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
    padding: 80px 0;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-accent);
    margin-top: 0;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}
.stat-item h3:hover {
    transform: scale(1.1);
}
.stat-item p {
    color: var(--color-white);
    font-weight: 500;
    opacity: 0.8;
}