.info-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 72px 38px;
    justify-content: center;
    align-items: center;
    gap: 18px;
    border-radius: 0;
    background: #F6F6F4 !important;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.info-box--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}

.info-box__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: #096DF2 !important;
    color: #fff !important;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.info-box__cta:hover {
    opacity: 0.82;
}

.info-box__title {
    color: #111 !important;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.info-box__body {
    color: #666 !important;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .info-box {
        padding: 48px 22px;
        gap: 14px;
    }

    .info-box__title {
        font-size: 16px;
    }

    .info-box__body {
        font-size: 15px;
    }
}