.list-section h2 { text-align:center; font-weight:500; }
.lists-container { display:flex; gap:16px; align-items:center; justify-content:center; }
.lists-container .list { flex:1; padding:10px; display:flex; align-items:center; justify-content:center; }
.lists-container .list .inner { text-align:left; }
.lists-container .list h3 { font-weight:500; }
.lists-container .middle-img { flex:0 0 30%; text-align:center; }
.proconsbutton { background:#1FB15A; border-radius:35px; padding:10px 40px; border:1px solid #0ea44b; color:#fff; font-size:16px; }
.proconsbutton:hover { background:#117c3c; }
.list.greenCheckList .inner {
    text-align: left !important;
}

/* List item icons */
.greenCheckList ul {
    padding-left: 10px;
}

.greenCheckList ul li {
    list-style-type: none;
    margin-bottom: 5px;
    margin-top: 5px;
    display: block;
    font-weight: bold;
    color: black;
}

.greenCheckList ul li:before {
    content: "";
    width: 19px;
    height: 19px;
    display: inline-block;
    background-image: url('/wp-content/uploads/2024/03/checkGreen-1.svg');
    top: 4px;
    left: -8px;
    position: relative;
}

.greenCheckList.checkPlus ul li {
    font-weight: 300;
}

.greenCheckList.checkPlus ul li:before {
    background-image: url('/wp-content/uploads/2024/03/checkPlus.svg');
}

.greenCheckList.checkMinus ul li {
    font-weight: 300;
}

.greenCheckList.checkMinus ul li:before {
    background-image: url('/wp-content/uploads/2024/03/checkMinus.svg');
}

/* Mobile styles */
@media (max-width: 768px) {
    .lists-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 15px;
    }

    .lists-container .list {
        flex: 1 1 100%;
        width: 100%;
        padding: 0;
    }

    .lists-container .middle-img {
        flex: 1 1 100%;
        width: 100%;
        order: 2;
        margin: 16px 0;
    }

    .lists-container .middle-img img {
        max-width: 100%;
        height: auto;
        margin-bottom: 16px;
    }

    .lists-container .list.checkPlus {
        order: 1;
    }

    .lists-container .list.checkMinus {
        order: 3;
    }

    .proconsbutton {
        padding: 12px 32px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .list-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

