.savings {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.savings-content-wrapper {
    flex-direction: column;
    justify-content: center;
}

.savings-number {
    display: inline-flex;
    min-width: 58px;
    height: 38px;
    margin-bottom: 20px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: #c8102e;
    color: #ffffff;
    font-weight: 900;
}

.savings-title {
    max-width: 900px;
    margin: 8px auto 28px;
    color: #c8102e;
    font-family: "PT Serif", Georgia, serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
}

.savings-intro {
    max-width: 600px;
    color: #4d5b6d;
    font-size: 19px;
    line-height: 26px;
}

.savings-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 36px;
}

.savings-card {
    flex: 1 1 240px;
    padding: 34px;
    border: 1px solid rgba(18, 58, 113, 0.08);
    border-radius: 0;
    background: #eef7fd;
    box-shadow: 0 24px 70px rgba(8, 30, 55, 0.14);
    text-align: left;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.savings-card b {
    color: #38a9e8;
    font-size: 24px;
}

.savings-card p {
    color: #4d5b6d;
    font-size: 18px;
    line-height: 24px;
}

.savings-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 35px;
}

.savings-flow span {
    padding: 18px 22px;
    border-radius: 0;
    background: #08253f;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 860px) {
    .savings-title {
        font-size: 34px;
        line-height: 38px;
    }

    .savings-list {
        margin-top: 28px;
    }

    .savings-card {
        flex-basis: 100%;
        padding: 28px 24px;
    }

    .savings-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .savings-flow span {
        padding: 16px 18px;
    }
}
