.boi-cta {
    background: #FDF0EC;
    border-left: 6px solid #F0705C;
    border-radius: 16px;
    padding: 40px 44px;
    text-align: center;
    margin: 44px 0 8px;
}

.boi-cta h3 {
    font-family: "Baloo 2", sans-serif;
    font-weight: 800;
    color: #1A2138;
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 14px 0 !important;
}

.boi-cta p {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: #3a4160;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 26px;
}

.boi-cta .boi-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.boi-cta a.boi-btn {
    display: inline-block;
    font-family: "Baloo 2", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 12px;
    transition: all .15s ease;
}

.boi-cta a.boi-btn-primary {
    background: #F0705C;
    color: #fff;
    box-shadow: 0 6px 16px rgba(240, 112, 92, .35);
}

.boi-cta a.boi-btn-primary:hover {
    background: #E15A46;
    color: #fff;
}

.boi-cta a.boi-btn-secondary {
    background: transparent;
    color: #E15A46;
    border: 2px solid #F0705C;
    padding: 12px 28px;
}

.boi-cta a.boi-btn-secondary:hover {
    background: rgba(240, 112, 92, .08);
    color: #E15A46;
}

@media(max-width:600px) {
    .boi-cta {
        padding: 32px 22px;
    }

    .boi-cta h3 {
        font-size: 25px;
    }
}