/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background-color: #F0F3EF;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
}

.stat-icon.yellow {
    background: var(--primary-yellow);
}

.stat-icon.blue {
    background: var(--primary-blue);
}

.stat-icon.green {
    background: var(--primary-green);
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.08;
    z-index: -1;
}

.stat-number {
    font-size: 66px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-number.yellow {
    color: var(--primary-yellow);
}

.stat-number.blue {
    color: var(--primary-blue);
}

.stat-number.green {
    color: var(--primary-green);
}

.stat-label {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 20px;
}

.row.stats-wrapper {
    border: 5px solid #ccc;
    border-radius: 30px;
    background-color: #fff;
}

.row.stats-wrapper .vach-stat-item {
    position: absolute;
    width: 2px;
    height: 45%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #5F5F5F;
    opacity: 0.29;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 18px;
    }
}