.darfa-mn-wrapper {
    position: relative;
    padding: 15px 20px;
}

.darfa-mn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.darfa-mn-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    align-items: center;
}

.darfa-mn-item {
    position: relative;
}

.darfa-mn-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #2563A8;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.darfa-mn-link:hover,
.darfa-mn-link.darfa-mn-active,
.current-menu-item > .darfa-mn-link,
.current-menu-ancestor > .darfa-mn-link {
    background-color: #E8EEF5;
    color: #2563A8;
}

.darfa-mn-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    line-height: 1;
}

.darfa-mn-item:hover .darfa-mn-arrow {
    transform: rotate(180deg);
}

.darfa-mn-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 10px 0;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.darfa-mn-item:hover .darfa-mn-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.darfa-mn-sub-link {
    display: block;
    padding: 12px 25px;
    color: #2563A8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.darfa-mn-sub-link:hover {
    background-color: #F5F8FB;
    color: #1e4d8b;
}

.darfa-mn-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.darfa-mn-bar {
    width: 25px;
    height: 3px;
    background-color: #2563A8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.darfa-mn-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}
