.section-comparison {
    margin: 100px 0;
}

.comparison-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
    padding: 45px 70px 50px;
    background-color: #E4EDEB;
    border-radius: 10px;
}

.comparison-header {
    max-width: 738px;
    width: 100%;
    margin: 0 auto;
}

.comparison-header h2 {
    max-width: 582px;
    width: 100%;
    margin: 0 auto 19px;
    text-transform: uppercase;
    text-align: center;
    line-height: 160%;
}

.comparison-header-text {
    font-size: 18px;
    line-height: 150%;
    text-align: center;
}

.comparison-content {
    display: flex;
    justify-content: space-between;
    gap: 0;
}

.comparison-block {
    max-width: 100%;
    width: 100%;
    background-color: #FAFBFB;
    border-radius: 10px;
    flex: 1;
    text-align: left;
    overflow: hidden;
}

.comparison-table table {
    margin: 0;
    border-collapse: collapse;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.comparison-table thead tr th {
    padding: 10px 0;
    background: #15324D;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
    text-align: center;
}

.comparison-table > table > tbody {
    background: #FAFBFB;
}

.comparison-table > table > tbody > tr > td {
    max-width: 33%;
    width: 33%;
    padding: 9px 10px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #C7E0DB;
    border-collapse: collapse;
    font-size: 14px;
    font-weight: 600;
    line-height: 27.32px;
    vertical-align: top;
}

.comparison-table p {
    display: inline-flex;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.comparison-table .icardy-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    vertical-align: middle;
}


.comparison-table .icardy-value:last-child {
    margin-bottom: 0;
}

.comparison-table .icardy-value img {
    display: flex;
    max-width: 24px;
    width: 100%;
    height: 24px;
    object-fit: contain;
}

.comparison-table .traditional-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    vertical-align: middle;
}

.comparison-table .traditional-value:last-child {
    margin-bottom: 0;
}

.comparison-table .traditional-value img {
    display: flex;
    max-width: 24px;
    width: 100%;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .section-comparison {
        /*margin: 52px 0;*/
        margin: 0;
    }
    .section-comparison .container {
        padding: 0;
    }

    .comparison-section {
        padding: 40px 17px;
        border-radius: 0;
    }

    .comparison-content {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-block {
        text-align: center;
    }

    .comparison-title {
        font-size: 16px;
        line-height: 140%;
    }

    .comparison-header h2 {
        margin: 0 auto 22px;
    }

    .comparison-header-text {
        font-size: 14px;
        line-height: 157%;
    }

    .comparison-block ul li {
        justify-content: center;
    }

    .comparison-table thead tr th {
        padding: 2px 0;
        font-size: 12px;
        line-height: 140%;
    }

    .comparison-table > table > tbody > tr > td {
        padding: 4px;
        font-size: 11px;
        line-height: 140%;
        vertical-align: middle;
    }

    .comparison-table .icardy-value img,
    .comparison-table .traditional-value img {
        max-width: 16px;
        height: 16px;
    }

    .comparison-table p {
        font-size: 11px;
        line-height: 140%;
    }

    .comparison-table .check {
        margin-right: 4px;
    }

    .comparison-table .check svg {
        width: 16px;
        height: 16px;
        object-fit: cover;
    }
}