.about-features {
    background: #fff;
}

.about-features__title {
    font-size: 2.5rem;
    color: #333e48;
    line-height: 1.2;
}

.about-features__description {
    color: #717e8a;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.about-features__list-title {
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    font-weight: 500;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-item__icon {
    flex-shrink: 0;
    margin-top: 3px;
    display: inline-flex;
    width: 26px;
    height: 26px;

    svg {
        width: 100%;
        height: 100%;
    }
}

.about-feature-item__text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: #333e48;
}

@media (max-width: 991px) {
    .about-features__title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-features__title {
        font-size: 1.5rem;
    }
}