.services-menu {
    position: relative;
    background-color: #ffffff;
    padding: 10px;
}

.services-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.services-menu-list > li {
    position: relative;
    margin: 0 15px;
}

.services-menu-list > li > a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

.services-menu-list > li:hover > ul {
    display: block;
}

.services-menu-list > li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    z-index: 10;
}

.services-menu-list > li ul li {
    padding: 5px 15px;
    white-space: nowrap;
}

.services-menu-list > li ul li a {
    text-decoration: none;
    color: #333;
}

.services-menu-list > li ul li a:hover {
    color: #007BFF;
}
