.section {
    padding: 64px 0;
}

.title {
    font-weight: 500;
    line-height: 1.2;
}

.title_type_first {
    font-size: 40px;
}

.title_type_second {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 1.25;
}

.title_type_third {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.3;
}

.paragraph {
    margin: 0;
}

.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.gradient-container {
    background: linear-gradient(180deg, #FFECE3 0%, rgba(255, 255, 255, 0.50)100%);
}

.main-banner__text {
    font-size: 18px;
    line-height: 1.33;
    margin-bottom: 32px;
}

.your-advantages__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.your-advantages__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    background: #F3F3F3;
    border-radius: 20px;
}

.your-advantages__image-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
}

.your-advantages__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.your-advantages__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38;
}

.your-advantages__text-appeal {    
    font-size: 18px;
    line-height: 1.33;
    text-align: center;
}

@media screen and (max-width: 1023px) {
    .container {
        max-width: 768px;
        width: 100%;
        margin: 0 auto;
    }

    .your-advantages__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .section {
        padding: 48px 0;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .your-advantages__list {
        grid-template-columns: 1fr;
    }

    .your-advantages__text-appeal .link{
        font-size: 18px;
    }

    .title_type_first {
        font-size: 28px;
    }

    .title_type_second {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .title_type_third {
        font-size: 18px;
        line-height: 1.33;
    }

    .main-banner__text {
        font-size: 16px;
        line-height: 1.37;
    }

    .main-banner .btn {
        width: 100%;
    }
}