.custom-nav-dc942983 {
    position: relative;
    font-family: sans-serif;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.burger-menu-dc942983 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    position: relative;
    z-index: 1000;
    border-radius: 4px;
}

.burger-menu-dc942983 .burger-icon-svg-dc942983 {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    overflow: visible;
}

.burger-menu-dc942983 .burger-bars { display: block !important; }
.burger-menu-dc942983 .burger-close { display: none !important; }
.burger-menu-dc942983.is-open .burger-bars { display: none !important; }
.burger-menu-dc942983.is-open .burger-close { display: block !important; }

.nav-content-dc942983 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    width: 100vw;
    background: #fff;
    padding: 0 20px 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}
.nav-content-dc942983.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

.custom-menu-dc942983 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.custom-menu-dc942983 > li {
    border-bottom: 1px solid #EBEBEB;
    padding: 16px 0;
    position: relative;
}
.custom-menu-dc942983 > li > a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    display: block;
    transition: color 0.3s ease;
}
.nav-button-container-dc942983 {
    margin-top: 25px;
}
.nav-btn-dc942983 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #344356;
    color: #fff !important;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-btn-icon-dc942983 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn-icon-dc942983 svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

/* Submenu Arrow SVG */
.menu-arrow-dc942983 {
    position: absolute;
    right: 0;
    top: 16px;
    pointer-events: none;
    transition: transform 0.3s ease;
    color: #1a1a1a;
}
.custom-menu-dc942983 .menu-item-has-children.open > .menu-arrow-dc942983 {
    transform: rotate(180deg);
}

/* Submenu */
.custom-menu-dc942983 .sub-menu {
    display: none;
    padding-left: 0;
    margin-top: 10px;
    list-style: none;
}
.custom-menu-dc942983 .menu-item-has-children.open > .sub-menu {
    display: block;
}
.custom-menu-dc942983 .sub-menu li {
    padding: 6px 0;
    border-bottom: none;
}
.custom-menu-dc942983 .sub-menu li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.submenu-icon-dc942983 {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 12px;
}