:root {
    --svf-green-950: #073d2b;
    --svf-green-900: #0a5437;
    --svf-green-800: #12693c;
    --svf-green-700: #17864c;
    --svf-green-100: #e9f6ee;
    --svf-orange: #ed5b16;
    --svf-orange-dark: #cf4507;
    --svf-ink: #10251b;
    --svf-muted: #5c6c63;
    --svf-border: #dce9e1;
}

.svf-site-header,
.svf-site-header * {
    box-sizing: border-box;
}

.svf-site-header {
    position: relative;
    z-index: 1200;
    width: 100%;
    color: var(--svf-ink);
    background: #fff;
    border-top: 3px solid var(--svf-green-700);
    box-shadow: 0 5px 24px rgba(7, 61, 43, 0.08);
    font-family: inherit;
}

.svf-site-header a {
    text-decoration: none;
}

.svf-header-shell {
    width: min(100% - 40px, 1420px);
    margin-inline: auto;
}

.svf-topbar {
    color: #fff;
    background: linear-gradient(90deg, var(--svf-green-950), var(--svf-green-800));
    font-size: 13px;
    line-height: 1.2;
}

.svf-topbar .svf-header-shell {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.svf-contact-links,
.svf-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.svf-contact-links a,
.svf-header-actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    opacity: 0.94;
}

.svf-contact-links a:hover,
.svf-contact-links a:focus-visible,
.svf-header-actions a:hover,
.svf-header-actions a:focus-visible {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

.svf-contact-links svg,
.svf-header-actions svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.svf-header-actions .svf-login-link {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: 700;
}

.svf-top-action {
    min-height: 29px;
    padding: 6px 13px;
    border-radius: 0 0 5px 5px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.svf-top-action-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f4aa00;
    background: #fff;
    border-radius: 50%;
    font-size: 7px;
}

.svf-top-action-apply {
    background: #ffb30f;
}

.svf-top-action-login {
    background: #18b791;
}

.svf-top-action:hover,
.svf-top-action:focus-visible {
    filter: brightness(0.93);
}

.svf-navbar {
    background: rgba(255, 255, 255, 0.98);
}

.svf-navbar .svf-header-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.svf-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.svf-logo img {
    display: block;
    width: 222px;
    max-width: 100%;
    height: auto;
    max-height: 53px;
    object-fit: contain;
}

.svf-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--svf-border);
    border-radius: 10px;
    color: var(--svf-green-900);
    background: #fff;
    cursor: pointer;
}

.svf-menu-toggle svg {
    width: 23px;
    height: 23px;
}

.svf-primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.svf-nav-link,
.svf-dropdown-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border: 0;
    border-radius: 9px;
    color: var(--svf-ink);
    background: transparent;
    font: inherit;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease;
}

.svf-nav-link:hover,
.svf-nav-link:focus-visible,
.svf-dropdown-toggle:hover,
.svf-dropdown-toggle:focus-visible,
.svf-nav-link.is-active,
.svf-nav-dropdown.is-active > .svf-dropdown-toggle {
    color: var(--svf-green-800);
    background: var(--svf-green-100);
}

.svf-dropdown-toggle svg {
    width: 13px;
    height: 13px;
    transition: transform 160ms ease;
}

.svf-nav-dropdown {
    position: relative;
}

.svf-nav-dropdown.is-open > .svf-dropdown-toggle svg {
    transform: rotate(180deg);
}

.svf-dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 230px;
    padding: 12px;
    color: var(--svf-ink);
    background: #fff;
    border: 1px solid var(--svf-border);
    border-radius: 16px;
    box-shadow: 0 22px 48px rgba(7, 61, 43, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -7px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.svf-dropdown-panel::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
}

.svf-nav-dropdown.is-open > .svf-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.svf-download-panel {
    width: min(610px, calc(100vw - 32px));
    padding: 18px;
}

.svf-dropdown-heading {
    padding: 0 2px 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--svf-border);
}

.svf-dropdown-heading strong {
    display: block;
    color: var(--svf-green-900);
    font-size: 15px;
}

.svf-dropdown-heading span {
    display: block;
    margin-top: 3px;
    color: var(--svf-muted);
    font-size: 12px;
    font-weight: 500;
}

.svf-download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.svf-bank-group {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    min-height: 56px;
    padding: 9px;
    background: #f7faf8;
    border: 1px solid #e5eee8;
    border-radius: 11px;
}

.svf-bank-group strong {
    color: var(--svf-green-900);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.svf-bank-group a,
.svf-simple-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 7px 9px;
    color: var(--svf-ink);
    background: #fff;
    border: 1px solid var(--svf-border);
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.svf-bank-group a:hover,
.svf-bank-group a:focus-visible,
.svf-simple-menu a:hover,
.svf-simple-menu a:focus-visible {
    color: #fff;
    background: var(--svf-green-700);
    border-color: var(--svf-green-700);
}

.svf-bank-group.svf-single-resource {
    grid-template-columns: 54px minmax(0, 1fr);
}

.svf-simple-menu {
    display: grid;
    gap: 6px;
}

.svf-simple-menu a {
    justify-content: flex-start;
    padding-inline: 12px;
}

.svf-nav-cta {
    margin-left: 5px;
    padding-inline: 15px;
    color: #fff !important;
    background: var(--svf-orange) !important;
    box-shadow: 0 7px 16px rgba(237, 91, 22, 0.2);
}

.svf-nav-cta:hover,
.svf-nav-cta:focus-visible {
    color: #fff !important;
    background: var(--svf-orange-dark) !important;
}

.home .svf-nav-cta {
    display: none;
}

.site-page-hero {
    height: 138px !important;
    min-height: 138px;
    background: linear-gradient(118deg, var(--svf-green-950), var(--svf-green-800)) !important;
    box-shadow: inset 0 -4px 0 rgba(237, 91, 22, 0.92);
}

.site-page-hero h1 {
    margin: 0 !important;
    padding: 0 20px;
    font-size: clamp(2rem, 3vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em;
}

.site-page-hero p {
    max-width: 900px;
    margin: 10px auto 0 !important;
    padding: 0 20px;
    font-size: clamp(0.92rem, 1.25vw, 1.05rem) !important;
    line-height: 1.45;
    opacity: 0.9;
}

.contact-page {
    width: min(100% - 32px, 1120px);
    margin: 34px auto 42px;
}

.contact-intro {
    max-width: 720px;
    margin-bottom: 24px;
}

.contact-eyebrow {
    margin: 0 0 7px;
    color: var(--svf-orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-intro h2 {
    margin: 0;
    color: var(--svf-ink);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.contact-intro p {
    margin: 10px 0 0;
    color: var(--svf-muted);
    font-size: 16px;
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    min-height: 210px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--svf-border);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(7, 61, 43, 0.08);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--svf-green-800), var(--svf-green-700));
    border-radius: 12px;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card h3 {
    margin: 0 0 7px;
    color: var(--svf-ink);
    font-size: 18px;
}

.contact-card p {
    margin: 0;
    color: var(--svf-muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    margin-top: 15px;
    color: var(--svf-green-800);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
    color: var(--svf-orange-dark);
    text-decoration: underline;
}

.contact-card-location {
    min-height: 280px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.7fr);
    gap: 22px;
    align-items: stretch;
}

.contact-location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    width: 100%;
    min-height: 238px;
    height: 100%;
    border: 0;
    border-radius: 13px;
    background: #eef5f0;
}

.contact-guidance {
    margin-top: 18px;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    background: linear-gradient(110deg, var(--svf-green-950), var(--svf-green-800));
    border-radius: 15px;
}

.contact-guidance p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.contact-guidance a {
    flex: 0 0 auto;
    padding: 10px 15px;
    color: #fff;
    background: var(--svf-orange);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.contact-guidance a:hover,
.contact-guidance a:focus-visible {
    color: #fff;
    background: var(--svf-orange-dark);
}

@media (max-width: 1180px) {
    .svf-navbar .svf-header-shell {
        min-height: 72px;
        position: relative;
    }

    .svf-logo img {
        width: 205px;
        max-height: 48px;
    }

    .svf-menu-toggle {
        display: inline-flex;
    }

    .svf-primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        max-height: calc(100vh - 125px);
        overflow-y: auto;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--svf-border);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 18px 36px rgba(7, 61, 43, 0.16);
    }

    .svf-primary-nav.is-open {
        display: grid;
        gap: 4px;
    }

    .svf-nav-link,
    .svf-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 44px;
        padding: 10px 12px;
        text-align: left;
    }

    .svf-dropdown-panel,
    .svf-nav-dropdown.is-open > .svf-dropdown-panel {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        padding: 10px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border-radius: 12px;
        background: #f6faf7;
    }

    .svf-dropdown-panel::before {
        display: none;
    }

    .svf-nav-dropdown.is-open > .svf-dropdown-panel {
        display: block;
    }

    .svf-nav-cta {
        margin: 7px 0 0;
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card-location {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .contact-location-details {
        display: block;
    }

    .contact-map {
        min-height: 260px;
    }

    .contact-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .svf-header-shell {
        width: min(100% - 24px, 1420px);
    }

    .svf-topbar .svf-header-shell {
        min-height: 37px;
    }

    .svf-contact-links {
        gap: 10px;
        font-size: 11.5px;
    }

    .svf-contact-email {
        display: none !important;
    }

    .svf-header-actions {
        font-size: 11.5px;
    }

    .home .svf-contact-links {
        display: none;
    }

    .home .svf-topbar .svf-header-shell {
        justify-content: center;
    }

    .home .svf-header-actions {
        gap: 5px;
    }

    .svf-top-action {
        padding-inline: 10px;
        font-size: 11px;
    }

    .svf-header-actions .svf-login-link {
        padding-left: 10px;
    }

    .svf-logo img {
        width: 188px;
    }

    .svf-download-grid {
        grid-template-columns: 1fr;
    }

    .site-page-hero {
        height: 108px !important;
        min-height: 108px;
    }

    .site-page-hero h1 {
        font-size: 1.8rem !important;
    }

    .site-page-hero p {
        display: none;
    }

    .contact-page {
        width: min(100% - 24px, 1120px);
        margin-top: 24px;
    }

    .contact-card {
        padding: 21px;
    }

    .contact-guidance {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .svf-site-header *,
    .svf-site-header *::before,
    .svf-site-header *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
