* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #2d3748;
    line-height: 1.6;
}
.container {
    display: flex;
}
.main-content {
    margin-left: 250px; 
    max-width: 90%;
    padding: 20px;
    flex: 1;
}
.language-toggle{
    text-align: right;
}
.description {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3182ce;
}
#language {
    padding: 12px;
    color: #3182ce;
    border: 1px solid #00558e;
    border-radius: 5px;
    background: #edf2f7;
    font-size: 17px;
    cursor: pointer;
    width: 120px;

    /* Remove custom arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%204%202%22%3E%3Cpath%20d%3D%22M0%200L2%202L4%200H0Z%22%20fill%3D%22%23358ccb%22%2F%3E%3C%2Fsvg%3E');
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 28px;
}

#language:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

/* Menu Styles */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Logo Styles */
img {
    margin: 30px 0 20px;
    width: 150px;
    height: auto;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
}

/* Menu Bar Styles */
.menuContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#menuList {
    list-style: none;
}
#menuList li {
    color: #3182ce;
}

#menuList li a {
    display: block;
    padding: 12px 10px;
    color: #3182ce;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
#menuList li a:hover {
    background-color: #eeeded;
    border-radius: 5px;
    /* padding: 0 10px; */
}
#menuList li ul.submenu {
    list-style: none;
    display: none;
    padding-left: 20px;
}

#menuList li:hover ul.submenu {
    display: block;
}

#menuList li ul.submenu li {
    margin: 4px 0;
}

#menuList li ul.submenu li a {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 20px;
}

/* Hamburger Menu */
#menuBtn {
    position: relative;
    top: 15px;
    width: 30px;
    height: 25px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

#menuBtn span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #3182ce;
    transition: 0.2s all ease;
}


#mainArea.active #menuBtn {
    right: 22px;
    top: 22px;
}

#menuBtn span:nth-child(1) {
    transform: translateY(-10px);
}

#menuBtn span:nth-child(3) {
    transform: translateY(10px);
}

#menuBtn:hover span:nth-child(1) {
    transform: translateY(-13px);
}

#menuBtn:hover span:nth-child(3) {
    transform: translateY(13px);
}

#menuBtn.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

#menuBtn.active span:nth-child(2) {
    opacity: 0;
}

#menuBtn.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/* Hide Main Content */
.hide-content {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-bar {
        width: 100%;
        height: auto;
        background-color: transparent;
        padding: 0;
    }

    #menuBtn {
        display: block;
        margin: 10px;
    }

    .menuContainer {
        display: none; 
        min-height: 100vh;
        padding: 10px 0;
    }

    .menuContainer.open {
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .main-content{
        margin-left: 0;
    }
    .logo-in-menu {
        display: none;
    }
}

/* Hide hamburger on large screens */
@media (min-width: 769px) {
    #menuBtn {
        display: none;
    }
    .menuContainer {
        display: flex !important;
    }
    .nav-bar {
        background-color: #f9f9f9;
    }
}

.footer {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #3182ce;
    padding: 15px 10px;
}




