.site-header {
    background: #fff;
    color: #0b1f3a;
    box-shadow: 0 2px 8px rgba(15,31,58,.12);
}

.site-header__inner {
    min-height: 110px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 96px;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: auto !important;
    height: 96px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
}

.main-nav a {
    color: #062c73;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: #43b31a;
}

.nav-toggle {
    color: #062c73;
}

@media (max-width: 640px) {
    .site-header__inner {
        min-height: 84px;
        height: 84px;
        align-items: center;
    }

    .site-logo {
        width: auto !important;
        height: 64px !important;
        margin-left: -14px;
        align-items: center;
    }

    .site-logo img {
        width: auto !important;
        height: 64px !important;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: 1px solid #d7dee8;
        border-radius: 8px;
        background: #fff;
        color: #062c73;
        font-size: 0;
        line-height: 1;
    }

    .nav-toggle::before {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
        background: #f5f7fb;
        color: #43b31a;
    }

    .main-nav {
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e9ef;
        box-shadow: 0 8px 20px rgba(15,31,58,.12);
    }

    .main-nav ul {
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: .75rem 0;
    }
}
