.stats-section {
    background: #111B31;
    color: #fff;
    padding: 60px 90px;
    margin-bottom: 60px;
}

.stats-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: start;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.stats-card {
    flex: 1 1 440px;
    max-width: 477px;
    height: auto;
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    -webkit-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

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

.stats-card-img {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.stats-card-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.stats-card:nth-child(1),
.stats-card:nth-child(4) {
    background: #ffffff;
    color: #000000;
}

.stats-card:nth-child(2),
.stats-card:nth-child(3) {
    background: #1B2439;
    color: #fff;
}

.stats-card > * {
    position: relative;
    z-index: 1;
}

.stats-number {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0;
}

.stats-text {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}

.blue {
    color: #3530FA;
}

@media (max-width: 992px) {
    .stats-title {
        font-size: 36px;
    }

    .stats-card {
        flex: 1 1 300px;
        padding: 15px 20px 25px;
    }

    .stats-number {
        font-size: 28px;
    }

    .stats-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 15px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .stats-card {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    .stats-card-img {
        justify-content: center;
    }


    .stats-number {
        font-size: 24px;
    }

    .stats-text {
        font-size: 18px;
    }
}
