/* ============================================
   Секция особенностей компании
   ============================================ */

.about-features {
    width: 100%;
    max-width: 1280px;
    margin: -300px auto 80px;
    padding: 0 100px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.about-features-container {
    background-color: var(--color-light-blue);
    border-radius: 5px 5px 0 0;
    padding: 60px 40px;
    box-sizing: border-box;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1.5px solid #91A2B8;
}

.about-feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--color-dark-blue);
    font-size: 25px;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
    width: 346px;
    flex-shrink: 0;
    text-align: left;
}

.about-feature-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--color-dark-blue);
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
    width: 511px;
    flex: 1;
    text-align: left;
}


.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    width: 511px;
    flex: 1;
}

.about-feature-list-item {
    width: 100%;
}

.about-feature-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--color-dark-blue);
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    margin: 0 0 10px 0;
}

.about-feature-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--color-dark-blue);
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    margin: 0;
}

/* Адаптивность для планшета (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-features {
        padding: 0 60px;
    }

    .about-features-container {
        padding: 40px 30px;
    }

    .about-feature-item {
        flex-direction: column;
        gap: 20px;
    }

    .about-feature-title {
        width: 100%;
        font-size: 22px;
    }

    .about-feature-description {
        width: 100%;
    }


    .about-feature-list {
        width: 100%;
    }

    .about-feature-list-item {
        width: 100%;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .about-features {
        padding: 0 20px;
        margin-top: -180px;
        margin-bottom: 40px;
    }

    .about-features-container {
        padding: 40px 20px;
    }

    .about-feature-item {
        flex-direction: column;
        gap: 15px;
    }

    .about-feature-title {
        width: 100%;
        font-size: 20px;
    }

    .about-feature-description {
        width: 100%;
        font-size: 13px;
    }


    .about-feature-list {
        width: 100%;
    }

    .about-feature-list-item {
        width: 100%;
    }

    .about-feature-subtitle {
        font-size: 13px;
    }

    .about-feature-text {
        font-size: 13px;
    }
}

