

.advantages-section {
    width:100vw;
    margin-left:calc(-50vw + 50%);
    padding:60px 0;
    font-family:Arial, Helvetica, sans-serif;

    background-image:url("//ueeshop.ly200-cdn.com/u_file/UPBD/UPBD085/2608/14/photo/2026081415283541322.jpg");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    position:relative;
    overflow:hidden;
}

.advantages-container {
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}

.advantages-title {
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#111;
    margin:0 0 70px;
}

.advantages-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

.advantage-item {
    text-align:left;
    min-width:0;
}

.advantage-icon {
    height:55px;
    margin-bottom:25px;
}

.advantage-icon img {
    width:55px;
    height:55px;
    object-fit:contain;
}

.advantage-number {
    font-size:48px;
    line-height:1;
    font-weight:700;
    color:#d40000;
    margin-bottom:12px;
}

.advantage-name {
    font-size:18px;
    font-weight:500;
    color:#000;
    margin-bottom:18px;
}

.advantage-desc {
    font-size:16px;
    line-height:1.6;
    color:#000;
    word-break:normal;
    overflow-wrap:break-word;
}

@media(max-width:992px){

    .advantages-grid {
        grid-template-columns:repeat(2,1fr);
        gap:50px 30px;
    }

}

@media(max-width:576px){

    .advantages-section {
        width:100vw;
        margin-left:calc(-50vw + 50%);
        padding:40px 0 50px;
        overflow:visible;
    }

    .advantages-container {
        width:100%;
        padding:0 20px;
        box-sizing:border-box;
    }

    .advantages-title {
        font-size:30px;
        margin:0 0 40px;
        text-align:center;
    }

    .advantages-grid {
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:45px 18px;
        width:100%;
    }

    .advantage-item {
        width:100%;
        min-width:0;
        text-align:center;
        box-sizing:border-box;
    }

    .advantage-icon {
        height:auto;
        margin-bottom:18px;
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .advantage-icon img {
        width:40px;
        height:40px;
        object-fit:contain;
    }

    .advantage-number {
        font-size:34px;
        line-height:1.1;
        margin-bottom:8px;
        text-align:center;
    }

    .advantage-name {
        font-size:15px;
        line-height:1.3;
        margin-bottom:10px;
        text-align:center;
    }

    .advantage-desc {
        font-size:13px;
        line-height:1.6;
        text-align:center;

        width:100%;
        max-width:160px;
        margin:0 auto;

        white-space:normal;
        word-break:normal;
        overflow-wrap:anywhere;
    }

}

@media(max-width:380px){

    .advantages-container {
        padding:0 15px;
    }

    .advantages-grid {
        gap:40px 12px;
    }

    .advantage-number {
        font-size:30px;
    }

    .advantage-name {
        font-size:14px;
    }

    .advantage-desc {
        font-size:12px;
        line-height:1.55;
        max-width:145px;
    }

}

