.consumers-page {
    padding: 40px 0 56px;
    background:
        radial-gradient(70% 160% at 0 50%, rgba(13, 106, 122, 0.35) 0%, rgba(13, 106, 122, 0) 52%),
        radial-gradient(70% 160% at 100% 50%, rgba(13, 106, 122, 0.35) 0%, rgba(13, 106, 122, 0) 52%),
        linear-gradient(180deg, #242046 0%, #231f4a 62%, #252149 100%);
}

.consumers-page__inner {
    max-width: 1320px;
}

.consumers-page__title {
    margin: 0;
    text-align: center;
    color: #f0f0f0;
    font-size: clamp(36px, 3.3vw, 62px);
    line-height: 1.12;
    font-weight: 700;
}

.consumers-page__cards {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.consumers-page__card {
    min-height: 378px;
    border-radius: 20px;
    background: #f6f6f6;
    padding: 58px 34px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.consumers-page__card-title {
    margin: 0;
    color: #222834;
    font-size: clamp(20px, 2.1vw, 24px);
    line-height: 1.2;
    font-weight: 700;
    max-width: 620px;
}

.consumers-page__card-text {
    margin: 20px 0 0;
    color: #2d3442;
    font-size: clamp(16px, 1.45vw, 28px);
    line-height: 1.35;
    font-weight: 700;
    max-width: 540px;
}

.consumers-page__button {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 54px;
    padding: 12px 28px;
    border-radius: 28px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #f2552c 0%, #4f3db9 100%);
}

.consumers-page__links {
    margin-top: 30px;
    border-radius: 20px;
    background: #f6f6f6;
    padding: 44px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.consumers-page__link {
    color: #1f3fdf;
    font-size: clamp(16px, 1.45vw, 28px);
    line-height: 1.35;
    font-weight: 400;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 992px) {
    .consumers-page {
        padding: 24px 0 34px;
    }

    .consumers-page__cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .consumers-page__card {
        min-height: 250px;
        padding: 28px 18px;
    }

    .consumers-page__button {
        min-height: 44px;
        min-width: 124px;
        font-size: 18px;
    }

    .consumers-page__links {
        margin-top: 16px;
        padding: 22px 16px;
    }
}
