.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .info-blocks {
        grid-template-columns: 1fr;
    }
    .info-block{
        min-height: auto !important;
        height: fit-content;
    }
}

.info-block {
    background: #f4f5f7;
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    min-height: 489px;
}

.info-block__top{
    display: flex;
    gap: 25px;
    align-items: center;
}

.info-block__icon {
    width: 44px;
    height: 44px;
    background: #546dfc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-block__icon img {
    width: 22px;
    height: 22px;
}

.info-block__title {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: #000;
    font-family: Tilda;
}

.info-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block__content p {
    font-size: 16px;
    line-height: 150%;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

.info-block__list li {
    font-size: 16px;
    line-height: 150%;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

.info-block__list li strong {
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

.info-block--delivery {
    background-image: url("../img/bg-delivery.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
}

.info-block--payment {
    background-image: url("../img/bg-payment.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
}

@media (max-width: 768px) {
    .info-block__title {
        font-size: 26px;
    }

    .info-block__content p {
        margin-bottom: 15px;
    }

    .info-block__list li {
        font-size: 16px;
        margin-bottom: 15px;
    }
}