/* ===== RESET ===== */
.menu-pc-navbar * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

.menu-pc-navbar ul {
    list-style: none;
}

/* ===== NAVBAR ===== */
.menu-pc-navbar {
    background: #1e40af;
    position: sticky;
    top: 0;
    z-index: 50;
}

.menu-pc-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* ===== LEVEL 1 ===== */
.menu-pc-level-1 {
    display: flex;
    gap: 24px;
}

.menu-pc-level-1 > li {
    position: relative;
    
}

.menu-pc-level-1 > li > a {
    display: block;
    padding: 15px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 14x;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}
.menu-pc-level-1 > li:first-child{
    width: 20%;
}
.menu-pc-level-1 > li:nth-child(2){
    width: 10%;
}
.menu-pc-level-1 > li:nth-child(3){
    width: 20%;
}
.menu-pc-level-1 > li:nth-child(4){
    width: 20%;
}
.menu-pc-level-1 > li:nth-child(5){
    width: 20%;
}
.menu-pc-level-1 > li:last-child{
    width: 10%;
}

.menu-pc-level-1 > li > a:hover {
    color: #93c5fd;
}

/* ===== LEVEL 2 ===== */
.menu-pc-level-2 {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0946b1;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.menu-pc-level-2 li a {
    display: block;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.menu-pc-level-2 li a:hover {
    background: #1787e9;
}

/* ===== HOVER ===== */
.menu-pc-has-sub:hover .menu-pc-level-2 {
    display: block;
}

/* ===== RESPONSIVE (PC → MOBILE) ===== */
@media (max-width: 1024px) {
    .menu-pc-level-1 {
        flex-direction: column;
    }
}
