.delivery-pay {
    padding: 34px 0 60px;
}

.delivery-pay__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.delivery-pay__title {
    font-size: 32px;
    font-family: Tilda;
    font-weight: 600;
    color: #000;
    margin: 0 0 22px;
    line-height: 110%;
}

.delivery-pay__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 18px;
}

@media (max-width: 980px) {
    .delivery-pay__grid {
        grid-template-columns: 1fr;
    }
}

.delivery-card {
    background: #f1f1f1;
    border-radius: 14px;
    padding: 26px 24px 22px;
    min-height: 240px;
}

.delivery-card__num {
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #546dfc;
    line-height: 100%;
    margin-bottom: 14px;
}

.delivery-card__text p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 150%;
    color: #666;
    font-family: Tilda;
    font-weight: 400;
}

.delivery-card__text p strong {
    color: #000;
    font-weight: 600;
}

.delivery-card__text p:last-child {
    margin-bottom: 0;
}

.return-block {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    background: #f1f1f1;
    border-radius: 14px;
    overflow: hidden;
}

@media (max-width: 980px) {
    .return-block {
        grid-template-columns: 1fr;
    }
}

.return-block__content {
    padding: 26px 24px;
}

.return-block__title {
    font-size: 32px;
    font-family: Tilda;
    font-weight: 600;
    color: #546dfc;
    margin: 0 0 12px;
    line-height: 110%;
}

.return-block__text p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 150%;
    color: #666;
    font-family: Tilda;
    font-weight: 400;
}

.return-block__text p strong {
    color: #000;
    font-weight: 600;
}

.return-block__text p:last-child {
    margin-bottom: 0;
}

.return-block__media {
    min-height: 220px;
    background-image: url("../img/return.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 980px) {
    .return-block__media {
        min-height: 180px;
    }
}