.features_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-flex;
    gap:20px;
    float:left;
}
#navigation .text-right {
    display: flex;
    justify-content: end;
    gap:20px;
}
#navigation .text-right .btn {
    display: flex;
    align-items: center;
    gap:5px;
}
.features_menu > li {
    position: relative;
    margin:0;
    display: flex;
    height: 44px;
    align-items: center;
}

/* Основний пункт */
.features_title {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    color:#fff;
}

/* Dropdown */
.features_dropdown {
    position: absolute;
    top: calc(100%);
    right: 0;
    min-width: 420px;
    max-height: 420px;
    overflow-y: auto;

    background: #ffffff;
    border-radius: 5px;
    padding: 8px 0;

    box-shadow: 
        0 20px 40px rgba(0,0,0,.12),
        0 2px 6px rgba(0,0,0,.06);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;

    list-style: none;
    z-index: 1000;
}

/* Показ при наведенні */
.features_menu > li:hover .features_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.features_menu > li:hover .features_title::after {
    transform: rotate(180deg);
}

/* Пункти меню */
.features_dropdown li {
    margin: 0;
}

.features_dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    text-align: left;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.features_dropdown a:hover {
    background: #f3f7f6;
    color: #2f8f78; /* зелений як на скріні */
}

/* Скрол */
.features_dropdown::-webkit-scrollbar {
    width: 6px;
}
.features_dropdown::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 10px;
}
#footer .examples .container ul {
    list-style-type:disc;
    margin-left:40px;
}