.why-europe {
   margin: 100px 0;
    overflow: hidden;
}

.why-europe .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

.why-europe__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.why-europe__left {
    text-align: center;
}

.why-europe__images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 36px;
}

.why-europe__images img {
    width: 100%;
}



.why-europe__title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: #202020;
}

.why-europe__title span {
    font-size: 40px;
    margin-right: 10px;
    font-weight: 600;
}

.why-europe__title strong {
    color: #ed0000;
    font-weight: 600;
}

.why-europe__right {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.why-europe__item {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 14px 22px 14px 17px;
    border: 1px solid #DADADA;

    background: #F8F8F8;
    border-radius: 18px;
}

.why-europe__num {
    width: 24px;
    height: 24px;
    margin-top: 6px;

    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
}

.why-europe__item h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: #242424;
}

.why-europe__item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #202020;
}

@media (max-width: 900px) {
    .why-europe {
        padding: 45px 0;
    }

    .why-europe__inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }



    .why-europe__title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {

    .why-europe {
        margin: 50px 0;
    }
    .why-europe {
        padding: 35px 0;
    }

    .why-europe__images {
        margin-bottom: 28px;
    }



    .why-europe__title {
        font-size: 28px;
    }

    .why-europe__item {
        grid-template-columns: 34px 1fr;
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
    }

    .why-europe__item h3 {
        font-size: 19px;
    }

    .why-europe__item p {
        font-size: 14px;
    }

    .why-europe__num {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}