.gdc-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:25px 0;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.gdc-feature-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:0 15px;
}

.gdc-feature-item:not(:last-child){
    border-right:1px solid #e6e6e6;
}

.gdc-icon{
    width:55px;
    height:55px;
    border:1px solid #d9e4d2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#5f7d46;
    flex-shrink:0;
}

.gdc-icon svg{
    width:32px;
    height:32px;
}

.gdc-feature-item span{
    font-size:15px;
    color:#444;
    line-height:1.4;
    font-weight:500;
}

@media (max-width:992px){
    .gdc-features{
        grid-template-columns:repeat(2,1fr);
    }

    .gdc-feature-item:nth-child(2){
        border-right:none;
    }
}

@media (max-width:576px){
    .gdc-features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .gdc-feature-item{
        border-right:none !important;
        border-bottom:1px solid #eee;
        padding-bottom:15px;
    }

    .gdc-feature-item:last-child{
        border-bottom:none;
    }
}