.dropdown-content {
    display: none;
    flex-direction: row;
    position: absolute;
    background-color: #1e2d3b;
    width: 41.8%;
    right: 0;
    top: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 20px;
    
}

/* Add this to your existing CSS */
.dropdown-content .column {
    width: 100%; /* Each column takes the full width */
    padding: 15px;
    box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
    .dropdown-content {
        width: 100%; /* Full width on smaller screens */
        top: 4rem;
    }

    .dropdown-content .column {
        width: 100%; /* Each column takes the full width */
        padding: 15px;
        box-sizing: border-box;
    }
}
.dropdown-content .column h4 {
    color: #edcd1f;
    font-size: 16px;
    margin-bottom: 10px;
}

.dropdown-content .column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.dropdown-content .column ul li{
    padding: 7px 0;
}
.dropdown-content .column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease-in;
}

.dropdown-content .column ul li a:hover {
    color: #edcd1f;
}