@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Light.woff2') format('woff2');
    font-weight: 200;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Semibold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/Switzer-Extrabold.woff2') format('woff2');
    font-weight: 800;
}

body {
    font-family: 'Switzer', sans-serif;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
    background: #f5f5f5;
    padding: 40px 40px;
}

/* CONTAINER */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT LOGO */
.header-left img {
    height: 28px;
    object-fit: contain;
}

/* CENTER MENU */
.header-center {
    display: flex;
    align-items: center;
    gap: 28px;
}
/* NAV MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
}

.nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    transition: 0.2s ease;
}

/* ACTIVE */
.nav-menu li.current-menu-item a {
    background: #2563eb;
    color: #fff;
}

/* HOVER */
.nav-menu li a:hover {
    background: #e5e7eb;
}

/* SXS ICON */
.sxs-icon img {
    height: 20px;
    margin-left: 10px;
}

/* RIGHT CTA */
.header-right .cta-button {
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}