.article.sitemap-list ul {
    padding-left: 0px;
    margin: 0;
}

.article.sitemap-list ul li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
    margin: 0;
    line-height: 1.6;
}

/* Vertical line for all items */
.article.sitemap-list ul li:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 1px;
    background-color: #666;
    border-left: 1px solid #666;
}

/* Vertical line for non-last items goes all the way through */
.article.sitemap-list ul li:not(:last-child):before {
    bottom: 0;
}

/* Vertical line for last items stops at the horizontal line */
.article.sitemap-list ul li:last-child:before {
    height: 12px;
}

/* Horizontal line to text */
.article.sitemap-list ul li:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 12px;
    width: 12px;
    height: 1px;
    background-color: #666;
    border-top: 1px solid #666;
}

/* Nested lists - submenus */
.article.sitemap-list ul ul {
    margin-top: 0;
    margin-bottom: 0;
}

/* Links styling */
.article.sitemap-list ul li a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s linear;
    display: inline-block;
    padding: 2px 0;
}

.article.sitemap-list ul li a:hover {
    color: #D86018;
}
