:root {
    --stc-blue: #2567b0;
    --stc-accent: #497fb0;
    --stc-light: #f9f9f9;
    --stc-cta: #1f98d9;
    --stc-gray: #6b7280;
}

.stc-header {
    position: relative;
    z-index: 1000;
    font-family: "DM Sans", "Inter", Arial, sans-serif;
}

.stc-topbar {
    display: none;
}

.stc-header__spacer {
    height: 0;
    transition: height 0.2s ease;
}

#mainmenu .show-mobile {
    display: none !important;
}

@media (min-width: 992px) {
    .stc-topbar {
        display: block;
        background: var(--stc-blue);
        color: #fff;
        font-size: 13px;
        line-height: 1.2;
    }

    .stc-topbar__inner {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 8px 0;
    }

    .stc-topbar__item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        color: #d9e7f6;
    }

    .stc-topbar__item i {
        font-size: 14px;
        color: #bcd2eaa3;
    }


    .stc-topbar__phone-link {
        color: inherit;
        text-decoration: none;
        cursor: pointer;
    }

    .stc-topbar__phone-link:hover,
    .stc-topbar__phone-link:focus {
        color: inherit;
        text-decoration: none;
    }

    .stc-topbar__action {
        margin-left: auto;
    }

    .stc-topbar__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 18px;
        border-radius: 5px;
        background: var(--stc-cta);
        color: #fff;
        font-weight: 600;
        font-size: 11px;
        text-decoration: none;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
        letter-spacing: 0.3px;
    }

    .stc-topbar__button:hover {
        color: #fff;
        background: #1486c7;
    }

    .stc-navwrap {
        position: relative;
        padding: 40px 0 10px;
        transition: background-color 0.25s ease, box-shadow 0.25s ease;
    }

    .stc-navcard {
        background: var(--stc-light);
        border-radius: 14px;
        padding: 2px 24px;
        display: flex;
        align-items: center;
        gap: 24px;
        justify-content: space-between;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    }

    .stc-nav__logo {
        background: transparent;
        border-radius: 8px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
    }

    .stc-nav__logo a {
        width: 150px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stc-nav__logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .stc-nav {
        flex: 1 1 auto;
    }

    .stc-nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 26px;
    }

    .stc-nav__item {
        display: flex;
        align-items: center;
    }

    .stc-nav__link {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
        color: #404040;
        text-decoration: none;
        letter-spacing: 0.4px;
    }

    .stc-nav__link:hover,
    .stc-nav__link--active {
        color: var(--stc-accent);
    }

    #mainmenu.stc-nav__list .stc-nav__link::after {
        content: none;
        display: none;
    }

    .stc-nav__item--search {
        margin-left: auto;
    }

    .stc-nav__search {
        color: var(--stc-accent);
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
    }

    .stc-header--sticky .stc-topbar {
        display: none;
    }

    .stc-header--sticky .stc-navwrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--stc-light);
        padding: 2px 0;
        box-shadow: none;
        z-index: 1100;
        display: block;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    }

    .stc-header--sticky .stc-navcard {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 6px 0;
    }
}

@media (max-width: 991.98px) {
    #mainmenu .show-mobile {
        display: list-item;
    }

    .stc-header #mainmenu {
        background: #235389;
    }

    .stc-header #mainmenu a {
        color: #fff;
    }

    .stc-header #mainmenu li a::after {
        display: none;
    }
}
