#solutions-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent; /* Adjust the color to match your design */
}

/* Show backdrop when dropdown menu is open */
#dropdown-menu:not(.hidden) + #backdrop {
    display: flex;
}

#dropdown-container {
    position: absolute;
    top: 5.25rem;
}

@media screen and (max-width: 768px) {
    #dropdown-container {
        position: absolute;
        top: 10.25rem;
    }
}