:root {
    --vbo-teal: #26696e;
    --vbo-teal-dark: #143f42;
    --vbo-yellow: #d6ce31;
    --vbo-ink: #223139;
    --vbo-muted: #66757b;
    --vbo-line: #dbe8e6;
    --vbo-bg: #f6faf9;
}

body {
    background: var(--vbo-bg);
    color: var(--vbo-ink);
}

.vbo-site-header,
.vbo-site-footer {
    background: #ffffff;
    border-color: var(--vbo-line);
    border-style: solid;
}

.vbo-site-header {
    border-width: 0 0 1px;
    position: relative;
    z-index: 5;
}

.vbo-site-footer {
    border-width: 1px 0 0;
    margin-top: 42px;
}

.vbo-header-shell,
.vbo-footer-shell {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    padding: 14px 18px;
    width: 100%;
}

.vbo-logo {
    align-items: center;
    background: var(--vbo-teal);
    border-radius: 7px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 850;
    gap: 10px;
    min-height: 54px;
    padding: 8px 14px;
    text-decoration: none;
}

.vbo-logo:hover,
.vbo-logo:focus {
    color: #ffffff;
}

.vbo-logo-mark {
    color: var(--vbo-yellow);
    font-size: 1.25rem;
}

.vbo-logo-text {
    color: #ffffff;
}

.vbo-logo-img {
    display: block;
    height: 42px;
    max-width: 190px;
    object-fit: contain;
    width: auto;
}

.vbo-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.vbo-nav ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vbo-nav li {
    margin: 0;
}

.vbo-nav a,
.vbo-footer-shell nav a {
    border-radius: 6px;
    color: var(--vbo-teal-dark);
    font-weight: 750;
    padding: 9px 11px;
    text-decoration: none;
}

.vbo-nav a:hover,
.vbo-nav a:focus,
.vbo-footer-shell nav a:hover,
.vbo-footer-shell nav a:focus {
    background: #eaf5f4;
    color: var(--vbo-teal);
}

.vbo-main {
    margin-block-start: 0;
    min-height: 60vh;
}

.vbo-front-main {
    padding-top: 0;
}

.vbo-footer-shell {
    align-items: flex-start;
    color: var(--vbo-muted);
    flex-wrap: wrap;
    padding-block: 24px;
}

.vbo-footer-shell strong {
    color: var(--vbo-ink);
}

.vbo-footer-shell p {
    margin: 6px 0 0;
}

.vbo-footer-shell nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vbo-footer-copy {
    flex-basis: 100%;
    font-size: 0.92rem;
}

@media (max-width: 760px) {
    .vbo-header-shell {
        align-items: stretch;
        flex-direction: column;
    }

    .vbo-logo {
        justify-content: center;
    }

    .vbo-nav {
        justify-content: center;
    }
}
