
.stats-section {
    min-height: 20vh;
    background: linear-gradient(180deg, #eaf6fc 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(3, 157, 211, 0.1);
    position: relative;
    z-index: 5;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    text-align: center;
    gap: 2rem;
}

.stat-item {
    flex: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #003366; /* Culoarea secundară (bleumarin) a site-ului */
    margin-bottom: 0.2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: #003366;
    opacity: 0.85;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 2.6rem;
    }
}

