.your-need-section .your-need{
    padding: 24px;
    background-color: var(--cream);
    border: 2px solid var(--brown);
}
.your-need-section .row{
    row-gap: 17px;
    justify-content: space-between;
}
.your-need-section .col-right {
    width: 52%;
}
.your-need-section .col-left {
    width: 38%;
}
.your-need-section .your-need:not(:last-child){
    margin-bottom: 30px;
}
.your-need-section .small{
    display: block;
}
.your-need-section .btn{
    margin-top: 10px;
}
.your-need-section .col-left p{
    max-width: 431px;
}
.your-need-section .col-left *:not(.btn){
    color: var(--cream);
}
@media only screen and (min-width: 992px) {
    .your-need-section .mobile-btn{
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .your-need-section .col-left,
    .your-need-section .col-right {
        width: 100%;
    }   
    .your-need-section .btn {
        margin-top: 25px;
    }
    .your-need-section .col-left .btn{
        display: none;
    }
    .your-need-section .col-left p{
        max-width: 100%;
    }
}