.site-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-hamburger {
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 101;
}

.menu-hamburger:focus, .menu-close:focus, .menu-hamburger:hover, .menu-close:hover {
    background-color: unset;
}

.menu-hamburger i {
    color: #000000;
    font-size: 25px;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    font-family: 'Inter', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e5e5;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}
.menu-logo img {
    width: 250px;
}

.menu-close {
    background: none;
    border: none;
    font-size: 12px;
    color: #000000;
    cursor: pointer;
    padding: 8px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-nav {
    flex: 1;
    padding: 20px 20px;
}

.menu-nav ul {
    list-style: none;
}

.menu-nav li {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .menu-nav li:nth-child(1) {
    animation: slideIn 0.4s ease forwards 0.1s;
}

.mobile-menu.active .menu-nav li:nth-child(2) {
    animation: slideIn 0.4s ease forwards 0.15s;
}

.mobile-menu.active .menu-nav li:nth-child(3) {
    animation: slideIn 0.4s ease forwards 0.2s;
}

.mobile-menu.active .menu-nav li:nth-child(4) {
    animation: slideIn 0.4s ease forwards 0.25s;
}

.mobile-menu.active .menu-nav li:nth-child(5) {
    animation: slideIn 0.4s ease forwards 0.3s;
}

.mobile-menu.active .menu-nav li:nth-child(6) {
    animation: slideIn 0.4s ease forwards 0.35s;
}

.mobile-menu.active .menu-nav li:nth-child(7) {
    animation: slideIn 0.4s ease forwards 0.4s;
}

.mobile-menu.active .menu-nav li:nth-child(8) {
    animation: slideIn 0.4s ease forwards 0.45s;
}

.mobile-menu.active .menu-nav li:nth-child(9) {
    animation: slideIn 0.4s ease forwards 0.5s;
}

.mobile-menu.active .menu-nav li:nth-child(10) {
    animation: slideIn 0.4s ease forwards 0.55s;
}

.mobile-menu.active .menu-nav li:nth-child(11) {
    animation: slideIn 0.4s ease forwards 0.6s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.menu-nav a:active {
    background: #f8f8f8;
}

.menu-nav a:active, .menu-nav a:hover {
    color: #000000;
}

.menu-item-has-children i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.menu-item-has-children.active i {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.submenu.active {
    max-height: 1000px;
}

.submenu li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.submenu a {
    padding: 18px 25px 18px 45px;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    background: white;
    border-bottom: 1px solid #f5f5f5;
}

.submenu a:active {
    background: #f8f8f8;
}

.menu-nav .button {
    width: 122px;
    color: white;
    margin-top: 18px;
}
.menu-nav .button:hover {
    color: #3b7a53;
}
body.menu-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
}