.warranty {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
}
/* Левая колонка */
.warranty-dark-item {
    padding-bottom: 30px;
    border-bottom: 2px solid #fff;
}
.warranty-dark-item:last-child {
    padding-top: 30px;
    border-bottom: none;
}
.warranty-dark {
    flex: 0 0 50%;
    background-color: #4d525a;
    padding: 40px 60px;
    color: #fff;
}
.warranty-dark-title {
    margin-bottom: 30px;
}
.warranty-dark-subtitle {
    font-size: 18px;
    margin-bottom: 18px;
}
.warranty-dark-subtitle span {
    font-weight: 700;
}
.warranty-dark-text {
    font-size: 14px;
}
/* Правая колонка */
.warranty-light {
    flex: 0 0 50%;
    color: #000;
    background-color: #fff;
}
.warranty-light-head {
    font-size: 20px;
    padding: 40px 60px 20px 60px;
}
.warranty-light-head span {
    font-weight: 700;
}
.warranty-light-content {
    background-color: #f3f3f3;
    padding: 20px 60px;
    display: flex;
    gap: 10px;
    font-size: 18px;
    text-align: center;
}
.warranty-light-content-item {
    flex: 0 0 50%;
}
.warranty-light-content-title {
    font-weight: 700;
}
.warranty-light-content-title span {
    font-size: 44px;
}
.warranty-light-text {
    background-color: #f3f3f3;
    padding: 20px 60px;
}
.warranty-light-text ul li {
    font-size: 18px;
    list-style: unset;
    margin-bottom: 8px;
}
.warranty-light-list {
    padding: 40px 60px;
    font-size: 16px;
}
.warranty-light-list ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 44px;
    line-height: 20px;
}
.warranty-light-list ul li:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 44px;
    left: -100px;
    top: 50%;
    margin-top: -22px;
    border-radius: 0 25px 25px 0;
    -webkit-box-shadow: -4px 4px 4px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: -4px 4px 4px 1px rgba(0, 0, 0, 0.4);
    box-shadow: -4px 4px 4px 1px rgba(0, 0, 0, 0.4);
    background-position: 80% center;
    background-repeat: no-repeat;
    background-size: 25%;
}

.warranty-light-list ul li:first-child:before {
    background-color: #9ba2ac;
    background-image: url("../img/warranty/img01.svg");
}
.warranty-light-list ul li:nth-child(2):before {
    background-color: #4fd0db;
    background-image: url("../img/warranty/img02.svg");
}
.warranty-light-list ul li:last-child:before {
    background-color: #30353f;
    background-image: url("../img/warranty/img03.svg");
}

@media (max-width: 992px) {
    .warranty {
        flex-direction: column;
    }
    .warranty-dark, .warranty-light {
        flex: 0 0 100%;
    }
    .warranty-light-list ul li {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .warranty-dark {
        padding: 20px 30px;
    }
    .warranty-light-head {
        font-size: 20px;
        padding: 20px 30px 20px 30px;
    }
    .warranty-light-content {
        background-color: #f3f3f3;
        padding: 20px 30px;
        display: flex;
        gap: 20px;
        font-size: 18px;
        text-align: center;
    }
    .warranty-light-list {
        padding: 20px 30px;
        font-size: 16px;
    }
    .warranty-light-list ul li:before {
        width: 110px;
        height: 36px;
        left: -80px;
        margin-top: -18px;
        background-size: 20%;
    }
}
@media (max-width: 576px) {
    .warranty-dark {
        padding: 20px 16px;
    }
    .warranty-light-head {
        font-size: 20px;
        padding: 20px 16px 20px 16px;
    }
    .warranty-light-content {
        background-color: #f3f3f3;
        padding: 20px 16px;
        display: flex;
        gap: 8px;
        font-size: 18px;
        text-align: center;
    }
    .warranty-light-list {
        padding: 20px 16px;
        font-size: 16px;
    }
    .warranty-light-list ul li:before {
        left: -80px;
    }

    .warranty-light-content {
        flex-direction: column;
    }
    .warranty-light-content-item {
        flex: 0 0 100%;
    }
}