.services-menu-container-03e28edd {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 320px;
    margin: 15px auto;
    font-family: sans-serif;
}

.services-toggle-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.services-toggle-btn:active {
    transform: scale(0.98);
}

.services-toggle-btn .toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.services-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.services-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
}

.services-dropdown-list li a {
    display: block;
    padding: 12px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.services-dropdown-list li a:hover {
    background-color: #f5f7fa;
    color: #0052cc;
}
