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

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

.options-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;
}

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

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

.options-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    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;
}

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

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

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

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

    .options-card {
        width: 100%;
        max-width: 100%;
        padding: 28px 24px;
    }
}
