.o-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
}

.c-offer {
    padding-top: 32px;
    padding-bottom: 32px;
}

.c-offer__title {
    text-align: center;
    color: #4a90e2;
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.3;
    text-wrap: pretty;
}

.c-offer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.c-offer__legal {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.c-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.c-card__number {
    display: block;
    font-size: 28px;
    color: #4a90e2;
}

.c-card__text {
    color: #555;
    line-height: 1.4;
    font-size: 14px;
}

@media (min-width: 768px) {

    .c-offer__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .c-offer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .c-card {
        padding: 24px;
        text-align: center;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {

    .c-offer__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .c-offer__legal {
        font-size: 15px;
    }
}