.site-hero {
    position: relative;
    color: #fff;
    background-color: #005eb8;
}

        .site-menu-wrap {
            position: absolute;
            top: 18px;
            left: 14px;
            z-index: 20;
        }

        .site-menu-wrap[hidden] {
            display: none;
        }

        .site-menu-toggle {
            background: transparent;
            border: none;
            color: #fff;
            padding: 0;
            width: 34px;
            height: 34px;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .site-menu-toggle:hover,
        .site-menu-toggle:focus,
        .site-menu-toggle:active {
            background: transparent !important;
            color: #fff !important;
            box-shadow: none !important;
        }

        .site-menu-toggle:focus {
            outline: none;
        }

        .site-menu-toggle-bar {
            display: block;
            width: 22px;
            height: 3px;
            margin: 2px 0;
            border-radius: 1px;
            background: #fff;
        }

        .site-drawer {
            position: fixed;
            inset: 0;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .site-drawer.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .site-drawer-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.35);
        }

        .site-drawer-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: min(320px, 88vw);
            height: 100%;
            background: #fff;
            transform: translateX(-100%);
            transition: transform 0.35s ease;
            box-shadow: 0 18px 34px -30px rgba(15, 23, 42, 0.7);
            display: flex;
            flex-direction: column;
        }

        .site-drawer.is-open .site-drawer-panel {
            transform: translateX(0);
        }

        .site-drawer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;
        }

        .site-drawer-brand {
            color: #005EB8;
            font-size: 30px;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
        }

        .site-drawer-brand:hover,
        .site-drawer-brand:focus {
            color: #005EB8;
            text-decoration: none;
        }

        .site-drawer-brand-accent {
            color: #005EB8;
        }

        .site-brand-italic {
            font-style: italic;
            margin-right: 3px;
        }

        .site-drawer-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border: 1px solid #d7deeb;
            border-radius: 10px;
            background: #fff;
            color: #64748b;
        }

        .site-drawer-close:hover,
        .site-drawer-close:focus {
            color: #0f172a;
            text-decoration: none;
        }

        .site-drawer-inner {
            padding: 16px;
            overflow-y: auto;
        }

        .site-drawer-section {
            padding-bottom: 14px;
            margin-bottom: 14px;
            border-bottom: 1px solid #e5e7eb;
        }

        .site-drawer-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .site-drawer-section-title {
            margin: 0 0 8px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #94a3b8;
        }

        .site-drawer-link,
        .site-drawer-home-link {
            display: flex;
            align-items: center;
            min-height: 48px;
            padding: 12px 10px;
            color: #0f172a;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
        }

        .site-drawer-link:hover,
        .site-drawer-link:focus,
        .site-drawer-home-link:hover,
        .site-drawer-home-link:focus {
            color: #0b3fa7;
            text-decoration: none;
        }

        .site-drawer-home-link {
            padding-left: 0;
            padding-right: 0;
        }

        .site-drawer-icon {
            width: 28px;
            color: #005EB8;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .site-footer {
            background: #ffffff;
            color: #1f2937;
            border-top: 1px solid #e5e7eb;
            margin-top: 40px;
        }

        .footer-container {
            width: 100%;
            margin: 0;
            box-sizing: border-box;
            padding: 38px 24px 18px;
        }

.footer-nav {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(720px, 1fr) minmax(220px, 260px);
    justify-content: space-between;
    align-items: start;
    gap: 24px;
}

        .footer-brand-logo {
            display: inline-flex;
            align-items: center;
            color: #005EB8;
            font-size: 30px;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
            margin-bottom: 12px;
        }

        .footer-brand-logo:hover,
        .footer-brand-logo:focus {
            color: #005EB8;
            text-decoration: none;
        }

        .footer-brand p {
            margin: 0;
            color: #4b5563;
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-section h3 {
            margin: 0 0 10px;
            font-size: 18px;
            color: #111827;
        }

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    column-gap: 50px;
}

.footer-links-multi-col {
    display: inline-grid;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(220px, max-content));
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
    column-gap: 50px;
    row-gap: 8px;
}

.footer-section.explore {
    justify-self: center;
}

        .footer-section a {
            color: #374151;
            text-decoration: none;
            line-height: 1.45;
            font-size: 15px;
        }

        .footer-section a:hover,
        .footer-section a:focus {
            color: #1d4ed8;
            text-decoration: underline;
        }

        .footer-bottom {
            margin-top: 24px;
            padding-top: 14px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-bottom small,
        .footer-email {
            color: #6b7280;
            font-size: 13px;
        }

        .footer-email:hover,
        .footer-email:focus {
            color: #1d4ed8;
        }

@media (max-width: 1400px) {
    .footer-nav {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 560px;
    }

    .footer-section.explore {
        grid-column: 1 / 2;
        justify-self: center;
    }

    .footer-section.about {
        grid-column: 2 / 3;
        justify-self: end;
    }

    .footer-links-multi-col {
        grid-template-columns: repeat(2, minmax(240px, max-content));
        grid-template-rows: repeat(6, auto);
        grid-auto-flow: column;
    }
}

@media (max-width: 1000px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: none;
    }

    .footer-section {
        border-top: 1px solid #e5e7eb;
        padding-top: 12px;
    }

    .footer-section:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .footer-links-multi-col {
        display: grid;
        width: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        column-gap: 0;
    }

    .footer-section.explore {
        grid-column: auto;
        justify-self: auto;
    }

    .footer-section.about {
        grid-column: auto;
        justify-self: auto;
    }

    .footer-section ul {
        column-gap: 0;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .site-menu-wrap[hidden] {
        display: block;
    }
}

@media (max-width: 767px) {
    .site-menu-wrap,
    .site-menu-wrap[hidden] {
        display: none;
    }

    .jumbotron {
        padding-right: 20px;
    }
}

        @media screen and (min-width: 768px) {
            .jumbotron {
                padding-top: 25px;
                padding-bottom: 25px;
            }
        }
