.why-choose {
    padding: 50px 0;
}

.why-choose-container {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 85%;
    margin: auto;
}
.why-choose-container > * {
    flex: 1 1 50%; /* take 50% width each, but still flexible */
    box-sizing: border-box; /* includes padding/border in width */
}
.why-choose .wc-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
}

.wc-content h2 {
    font-size: 32px;
    color: #0a2d59;
    margin-bottom: 15px;
}

.wc-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wc-btn {
    padding: 9px 63px;
    line-height: 24px;
    background: #00a88f;
    /*background: #008000;*/
    border-radius: 46px;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.wc-btn:hover {
    color: #00a88f;
    /*color: #008000;*/
    background: #fff;
    border:1px solid #00a88f;
    /*border:1px solid #008000;*/
}

/* REVERSE LAYOUT */
.why-choose.reverse .why-choose-container {
    flex-direction: row-reverse;
}

/* RESPONSIVE */
@media(max-width:900px){
    .why-choose-container {
        flex-direction: column!important;
        text-align: center;
    }
}
@media(max-width:767px){
    .why-choose-container {
        max-width: 100%;
    }
    
}