.section-benefits {
    margin: 100px 0;
}

.benefits-section {
    padding: 50px 70px;
    background: #E4EDEB;
    border-radius: 10px;
}

.section-benefits-light .benefits-section {
    background: transparent;
}

.benefits-header {
    margin-bottom: 48px;
    text-align: center;
}

.benefits-header h2 {
    max-width: 900px;
    margin: 0 auto 25px;
    text-transform: uppercase;
}

.benefits-header p {
    max-width: 738px;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}

.benefits-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 17px;
    list-style: none;
}

.tab-list-item {
    max-width: 100%;
    width: 100%;
    padding: 10px 20px;
    background: #B7CFCA;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.tab-list-item.active {
    background-color: #1F8467;
}

.tab-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.tab-content {
    display: flex;
    justify-content: center;
}

.tab-panel {
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
    background: #fff;
    padding: 36px 30px 34px 32px;
    border-radius: 10px;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tab-item-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tab-item img {
    max-width: 24px;
    width: 100%;
    height: 24px;
}

.tab-item h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.tab-item p {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}

.benefits-image {
    max-width: 470px;
    width: 100%;
    height: 409px;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.benefits-image img {
    max-width: 470px;
    width: 100%;
    height: 409px;
    object-fit: cover;
}

.benefits-image .icardy-button-green {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
}

.section-benefits-light .benefits-header {
    margin-bottom: 50px;
}

.section-benefits-light .tab-list-item {
    max-width: 477px;
}

.section-benefits-light .tab-list {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .section-benefits {
        margin: 52px 0 0;
        padding-bottom: 20px;
        background: #E4EDEB;
    }
    .benefits-section {
        padding: 39px 0 22px;
    }
    .benefits-header {
        margin-bottom: 38px;
    }
    .benefits-header h2 {
        max-width: 100%;
        margin: 0 auto 14px;
        line-height: 175%;
    }
    .benefits-header p {
        font-size: 14px;
        line-height: 23px;
    }
    .tab-list {
        gap: 5px;
        margin-bottom: 10px;
    }
    .tab-list-item {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: max-content;
        padding: 13px 10px;
        border-radius: 6px;
        font-size: 11px;
        line-height: 100%;
    }
    .tab-panel {
        flex-direction: column;
        padding: 0;
    }
    .tab-items {
        padding: 14px;
        background: #fff;
        border-radius: 10px;
    }
    .benefits-image {
        display: flex;
        max-width: 100%;
        margin-bottom: 16px;
        padding: 0 16px;
        border-radius: 10px;
        overflow: hidden;
    }
    .benefits-image img {
        max-width: 100%;
        object-fit: cover;
        object-position: top;
    }
    .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .tab-item h3,
    .tab-item p {
        font-size: 14px;
    }
    .tab-item img {
        max-width: 20px;
        width: 100%;
        height: 20px;
    }
    .benefits-image,
    .benefits-image img {
        height: 195px;
    }
    .section-benefits-light {
        margin: 0;
        padding-bottom: 17px;
        background: #fff;
    }
    .section-benefits-light .benefits-section {
        padding: 42px 0 22px;
    }
    .section-benefits-light .tab-list-item {
        padding: 7px 10px;
    }
    .section-benefits-light .benefits-header h2 {
        margin: 0 auto 16px;
    }
    .section-benefits-light .benefits-header {
        margin-bottom: 40px;
    }
    .section-benefits-light .tab-items {
        gap: 22px;
    }
    .section-benefits-light .benefits-image,
    .section-benefits-light .benefits-image img {
        height: 313px;
        padding: 0;
    }
}