.navbar {
    z-index: 99;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    align-items: center;
    background: white;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar__logo img {
    height: 40px;
}

.navbar__toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 100;
}

.navbar__toggle-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    transition: all 0.2s ease;
}

.navbar__toggle-icon::before {
    top: -8px;
}

.navbar__toggle-icon::after {
    top: 8px;
}

.navbar__menu {
    list-style: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    margin: 0;
    padding: 0;
}

.navbar__menu.active {
    max-height: 500px;
    padding: 1rem 0;
}

.navbar__menu li {
    padding: 0.5rem 1rem;
}

.navbar__menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

li.current-menu-item > a {
    color: #0066cc;
}

.navbar__menu a:hover {
    color: #0066cc;
}

@media (min-width: 48em) {
    .navbar__toggle {
        display: none;
    }

    .navbar__menu {
        display: flex;
        max-height: none;
        position: static;
        width: auto;
        background: transparent;
    }

    .navbar__menu li {
        padding: 0 1rem;
    }
}

@media (min-width: 64em) {
    .navbar {
        padding: 2vh 8vw ;
    }
}