:root {
    --ps-blue: #003f98;
    --ps-blue-dark: #062a5f;
    --ps-blue-ink: #071a33;
    --ps-blue-soft: #e8f1ff;
    --ps-border: #d8e0ec;
    --ps-text: #111827;
    --ps-muted: #5d6978;
    --ps-white: #ffffff;
    --ps-page-max: 128em;
    --ps-page-gutter: clamp(32px, 4.75vw, 90px);
    --ps-page-width: min(var(--ps-page-max), calc(100% - (var(--ps-page-gutter) * 2)));
}

.ps-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: var(--ps-white);
    border-bottom: 1px solid var(--ps-border);
    color: var(--ps-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ps-header * {
    box-sizing: border-box;
}

.ps-header a {
    color: inherit;
    text-decoration: none;
}

.ps-header__inner {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
}

@media (min-width: 981px) {
    .ps-header {
        margin-left: auto;
        margin-right: auto;
        max-width: var(--ps-page-max);
    }

    .ps-header__inner {
        width: 100%;
        max-width: var(--ps-page-max);
        padding-left: var(--ps-page-gutter);
        padding-right: var(--ps-page-gutter);
    }
}

@media (min-width: 128em) {
    body {
        max-width: var(--ps-page-max);
        margin-left: auto;
        margin-right: auto;
    }
}

.ps-header__utility {
    border-bottom: 1px solid var(--ps-border);
}

.ps-header__utility .ps-header__inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(170px, auto) 1fr auto;
    gap: 24px;
    align-items: center;
}

.ps-header__brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.ps-header__brand img {
    display: block;
    width: auto;
    max-width: 270px;
    max-height: 42px;
}

.ps-header__brand span {
    color: var(--ps-blue);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.ps-header__top-nav {
    display: flex;
    justify-content: flex-end;
    gap: 26px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ps-header__top-nav a {
    color: var(--ps-blue-ink);
    padding: 30px 0;
}

.ps-header__top-nav a:hover,
.ps-header__top-nav a:focus {
    color: var(--ps-blue);
}

.ps-header__search {
    display: inline-flex;
    width: 52px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    background: var(--ps-blue);
    color: var(--ps-white);
}

.ps-header__search:hover,
.ps-header__search:focus {
    background: var(--ps-blue-dark);
    color: var(--ps-white);
}

.ps-header__search svg {
    display: block;
    width: 23px;
    height: 23px;
    fill: var(--ps-white);
}

.ps-header__search svg path {
    fill: var(--ps-white);
}

.ps-header .ps-header__contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    background: var(--ps-blue);
    color: var(--ps-white) !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ps-header .ps-header__contact:visited,
.ps-header .ps-header__contact:hover,
.ps-header .ps-header__contact:focus {
    background: var(--ps-blue-dark);
    color: var(--ps-white) !important;
}

.ps-header__mobile-search {
    display: none;
}

.ps-mobile-search-panel {
    position: absolute;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    min-height: 76px;
    display: grid;
    grid-template-columns: var(--ps-page-gutter) 32px minmax(0, 1fr) 56px var(--ps-page-gutter);
    align-items: center;
    background: var(--ps-white);
    color: var(--ps-blue);
    border-bottom: 1px solid var(--ps-border);
    box-shadow: 0 18px 34px rgba(7, 26, 51, 0.12);
}

.ps-mobile-search-panel[hidden] {
    display: none;
}

.ps-mobile-search-panel svg {
    grid-column: 2;
    justify-self: center;
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.ps-mobile-search-panel input {
    grid-column: 3;
    width: 100%;
    height: 76px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ps-blue-ink);
    font: inherit;
    font-size: 1.45rem;
    font-weight: 500;
}

.ps-mobile-search-panel input::placeholder {
    color: rgba(7, 26, 51, 0.46);
    opacity: 1;
}

.ps-mobile-search-panel button {
    grid-column: 4;
    position: relative;
    width: 56px;
    height: 56px;
    border: 0;
    background: transparent;
    color: var(--ps-blue);
    padding: 0;
}

.ps-mobile-search-panel button span {
    position: absolute;
    left: 16px;
    top: 27px;
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
}

.ps-mobile-search-panel button span:first-child {
    transform: rotate(45deg);
}

.ps-mobile-search-panel button span:last-child {
    transform: rotate(-45deg);
}

.ps-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ps-border);
    background: var(--ps-white);
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .ps-header__toggle span:not(.screen-reader-text) {
        display: block;
        width: 24px;
        height: 2px;
        margin: 0;
        background: #071a33;
        border-radius: 0;
    }

.ps-header__services {
    position: relative;
    background: var(--ps-white);
}

.ps-header__services-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
}

.ps-header__service-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.ps-header__service-button {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    border: 0;
    background: transparent;
    color: var(--ps-blue-ink);
    padding: 0 14px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.ps-header__service-button:visited {
    color: var(--ps-blue-ink);
}

.ps-header__service-button::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    background: transparent;
}

.ps-header__service-button:hover,
.ps-header__service-button:focus,
.ps-header__service-button.is-active {
    color: var(--ps-blue);
}

.ps-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 54px;
    background: #f3f6fa;
    border-top: 1px solid var(--ps-border);
    border-bottom: 1px solid var(--ps-border);
    box-shadow: 0 24px 46px rgba(7, 26, 51, 0.14);
}

.ps-mega__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(310px, 34%) 1fr;
    gap: 44px;
    padding: 0;
}

@media (min-width: 981px) {
    .ps-mega__inner {
        width: 100%;
        max-width: var(--ps-page-max);
    }
}

.ps-mega__menu {
    min-height: 360px;
    padding: 32px 28px 44px var(--ps-page-gutter);
    background: var(--ps-white);
}

.ps-mega__menu h2 {
    margin: 0 0 18px;
    color: var(--ps-blue);
    font-size: 1.7rem;
    line-height: 1.1;
}

.ps-mega__menu > a:not(.ps-mega__view-all) {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    color: var(--ps-blue-ink);
    font-size: 0.95rem;
    font-weight: 650;
}

.ps-mega__menu > a:not(.ps-mega__view-all):hover,
.ps-mega__menu > a:not(.ps-mega__view-all):focus {
    color: var(--ps-blue);
}

.ps-mega__view-all {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    padding: 0 22px;
    background: #e8edf3;
    color: var(--ps-blue-ink);
    font-size: 0.86rem;
    font-weight: 850;
    text-transform: uppercase;
}

.ps-mega__view-all:hover,
.ps-mega__view-all:focus {
    background: var(--ps-blue);
    color: var(--ps-white);
}

.ps-mega__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding: 40px var(--ps-page-gutter) 44px 0;
}

.ps-mega__feature {
    display: block;
    min-width: 0;
    color: var(--ps-blue-ink);
}

.ps-mega__feature img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 20px;
}

.ps-mega__feature-kicker {
    display: block;
    margin-bottom: 12px;
    color: #4d5866;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ps-mega__feature strong {
    display: block;
    margin-bottom: 14px;
    color: var(--ps-text);
    font-size: 1.02rem;
    line-height: 1.25;
}

.ps-mega__feature-link {
    color: var(--ps-blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ps-mobile {
    display: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .ps-header__inner {
        width: 100%;
    }

    .ps-header__utility .ps-header__inner {
        min-height: 56px;
        display: grid;
        grid-template-columns: 56px 1fr 56px;
        gap: 0;
        align-items: stretch;
    }

    .ps-header__brand {
        grid-column: 2;
        justify-content: center;
        min-width: 0;
        padding: 0 10px;
    }

    .ps-header__brand span {
        font-size: 1.2rem;
        line-height: 1;
        white-space: nowrap;
    }

    .ps-header__brand img {
        max-width: 156px;
        max-height: 32px;
    }

    .ps-header__top-nav,
    .ps-header__services {
        display: none;
    }

    .ps-header__search {
        display: none;
    }

    .ps-header .ps-header__contact {
        display: none;
    }

    .ps-header__mobile-search {
        grid-column: 3;
        display: inline-flex;
        width: 56px;
        min-height: 56px;
        align-items: center;
        justify-content: center;
        background: #003f98 !important;
        color: #fff !important;
    }

    .ps-header__mobile-search:hover,
    .ps-header__mobile-search:focus {
        background: #062a5f !important;
        color: #fff !important;
    }

    .ps-header__mobile-search svg {
        display: block;
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .ps-mobile-search-panel {
        position: fixed;
        z-index: 1001;
        top: 0;
        left: 0;
        right: 0;
        min-height: 56px;
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr) 56px;
        align-items: center;
        background: #003f98;
        color: #fff;
        box-shadow: 0 18px 34px rgba(7, 26, 51, 0.22);
    }

    .ps-mobile-search-panel[hidden] {
        display: none;
    }

    .ps-mobile-search-panel svg {
        grid-column: 1;
        justify-self: center;
        width: 27px;
        height: 27px;
        fill: currentColor;
    }

    .ps-mobile-search-panel input {
        grid-column: 2;
        width: 100%;
        height: 56px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #fff;
        font: inherit;
        font-size: 1.35rem;
        font-weight: 500;
    }

    .ps-mobile-search-panel input::placeholder {
        color: rgba(255, 255, 255, 0.68);
        opacity: 1;
    }

    .ps-mobile-search-panel button {
        grid-column: 3;
        position: relative;
        width: 56px;
        height: 56px;
        border: 0;
        background: transparent;
        color: #fff;
        padding: 0;
    }

    .ps-mobile-search-panel button span {
        position: absolute;
        left: 16px;
        top: 27px;
        display: block;
        width: 25px;
        height: 2px;
        background: currentColor;
    }

    .ps-mobile-search-panel button span:first-child {
        transform: rotate(45deg);
    }

    .ps-mobile-search-panel button span:last-child {
        transform: rotate(-45deg);
    }

    .ps-header__toggle {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        width: 56px;
        height: 56px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-right: 1px solid var(--ps-border);
        padding: 0;
        background: #fff;
    }

    .ps-mobile {
        display: block;
        position: fixed;
        top: 50%;
        left: 50%;
        width: min(390px, calc(100vw - 24px));
        max-height: calc(100dvh - 32px);
        overflow: hidden;
        background: var(--ps-white);
        border: 1px solid var(--ps-border);
        box-shadow: 0 24px 46px rgba(7, 26, 51, 0.18);
        padding: 0;
        transform: translate(-50%, -50%);
    }

    .ps-mobile[hidden] {
        display: none;
    }

    .ps-mobile__bar {
        min-height: 54px;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr) 54px;
        align-items: center;
        background: var(--ps-white);
        border-bottom: 1px solid var(--ps-border);
    }

    .ps-mobile__close {
        position: relative;
        grid-column: 1;
        width: 54px;
        height: 54px;
        border: 0;
        background: transparent;
        color: var(--ps-blue-ink);
        padding: 0;
    }

    .ps-mobile__close span {
        position: absolute;
        left: 17px;
        top: 26px;
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
    }

    .ps-mobile__close span:first-child {
        transform: rotate(45deg);
    }

    .ps-mobile__close span:last-child {
        transform: rotate(-45deg);
    }

    .ps-mobile__close::after {
        content: none !important;
    }

    .ps-mobile__logo {
        grid-column: 2;
        justify-content: center !important;
        min-height: 54px !important;
        padding: 0 !important;
    }

    .ps-mobile__logo img {
        display: block;
        width: auto;
        max-width: 174px;
        max-height: 30px;
    }

    .ps-mobile__logo::after {
        content: none !important;
    }

    .ps-mobile__layout {
        position: relative;
        display: block;
        width: 100%;
        min-height: min(560px, calc(100dvh - 86px));
        max-height: calc(100dvh - 86px);
        overflow: hidden;
        background: var(--ps-white);
    }

    .ps-mobile__primary {
        height: 100%;
        max-height: calc(100dvh - 86px);
        overflow: auto;
        background: var(--ps-white);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .ps-mobile__layout.has-submenu-open .ps-mobile__primary {
        transform: translateX(-24px);
        opacity: 0;
        pointer-events: none;
    }

    .ps-mobile__divider {
        width: 100%;
        height: 1px;
        margin: 12px 0;
        background: var(--ps-border);
    }

    .ps-mobile__subpanels {
        position: absolute;
        inset: 0;
        display: none;
        background: var(--ps-white);
        pointer-events: none;
    }

    .ps-mobile__layout.has-submenu-open .ps-mobile__subpanels {
        display: block;
        pointer-events: auto;
    }

    .ps-mobile a,
    .ps-mobile button {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 0;
        background: transparent;
        color: var(--ps-blue-ink);
        padding: 0 18px;
        font: inherit;
        font-size: 0.86rem;
        font-weight: 800;
        text-align: left;
        text-transform: none;
        line-height: 1.2;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .ps-mobile button::after {
        content: ">";
        color: var(--ps-blue-ink);
        font-size: 1.15rem;
        line-height: 1;
    }

    .ps-mobile__services button {
        font-size: 0.86rem;
        font-weight: 850;
        white-space: nowrap;
    }

    .ps-mobile button.is-active {
        background: var(--ps-white);
        color: var(--ps-blue);
        box-shadow: inset 4px 0 0 var(--ps-blue);
    }

    .ps-mobile__sub {
        position: absolute;
        inset: 0;
        display: block;
        min-height: min(560px, calc(100dvh - 86px));
        max-height: calc(100dvh - 86px);
        overflow: auto;
        padding: 0 0 18px;
        background: var(--ps-white);
        transform: translateX(0);
    }

    .ps-mobile__sub[hidden] {
        display: none;
    }

    .ps-mobile__back {
        min-height: 52px !important;
        justify-content: flex-start !important;
        gap: 10px;
        border-bottom: 1px solid var(--ps-border) !important;
        background: var(--ps-white) !important;
        color: var(--ps-blue-ink) !important;
    }

    .ps-mobile__back::after {
        content: none !important;
    }

    .ps-mobile__back span {
        font-size: 1.1rem;
        line-height: 1;
    }

    .ps-mobile__sub h2 {
        margin: 0;
        padding: 18px;
        color: var(--ps-blue-ink);
        font-size: 1.05rem;
        line-height: 1.2;
        text-transform: uppercase;
        border-bottom: 1px solid var(--ps-border);
    }

    .ps-mobile__sub a {
        min-height: 44px;
        color: var(--ps-blue-ink);
        border-bottom: 0;
        font-size: 0.84rem;
        font-weight: 700;
        text-transform: none;
    }

    .ps-mobile__sub-overview {
        color: var(--ps-blue) !important;
        font-weight: 850 !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 520px) {
    .ps-header__brand span {
        font-size: 1.55rem;
    }

    .ps-header__brand img {
        max-width: 156px;
    }

    .ps-mobile a,
    .ps-mobile button {
        min-height: 46px;
        padding: 0 16px;
        font-size: 0.76rem;
    }

    .ps-mobile__services button {
        font-size: 0.78rem;
    }

    .ps-mobile__sub a {
        min-height: 40px;
        font-size: 0.76rem;
    }
}

@media (max-width: 380px) {
    .ps-mobile a,
    .ps-mobile button,
    .ps-mobile__sub a {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 0.7rem;
    }

    .ps-mobile__services button {
        font-size: 0.72rem;
    }
}

.ps-footer {
    background: var(--ps-blue-ink);
    color: var(--ps-white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ps-footer * {
    box-sizing: border-box;
}

.ps-footer a {
    color: inherit;
    text-decoration: none;
}

.ps-footer__inner {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.45fr) minmax(230px, 0.75fr);
    gap: 48px;
    padding: 58px 0 52px;
}

.ps-footer__brand {
    border-left: 4px solid var(--ps-blue);
    padding-left: 22px;
}

.ps-footer__logo {
    display: inline-flex;
    align-items: center;
    color: var(--ps-white);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 18px;
}

.ps-footer__logo img {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 34px;
}

.ps-footer__brand p,
.ps-footer__contact p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.ps-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 14px;
    padding: 0 18px;
    background: var(--ps-blue);
    color: var(--ps-white) !important;
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

.ps-footer__cta:hover,
.ps-footer__cta:focus {
    background: #0a56c2;
    color: var(--ps-white) !important;
}

.ps-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ps-footer__column h2,
.ps-footer__contact h2 {
    margin: 0 0 16px;
    color: var(--ps-white);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ps-footer__column a,
.ps-footer__contact a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.45;
}

.ps-footer__column a:hover,
.ps-footer__column a:focus,
.ps-footer__contact a:hover,
.ps-footer__contact a:focus {
    color: var(--ps-white);
}

.ps-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ps-footer__bottom-inner {
    width: min(100% - 32px, 1280px);
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
}

.ps-footer__bottom p {
    margin: 0;
}

.ps-footer__bottom a {
    margin-left: 18px;
}

.ps-footer__bottom a:hover,
.ps-footer__bottom a:focus {
    color: var(--ps-white);
}

@media (min-width: 981px) {
    .ps-footer__inner,
    .ps-footer__bottom-inner {
        width: 100%;
        max-width: var(--ps-page-max);
        padding-left: var(--ps-page-gutter);
        padding-right: var(--ps-page-gutter);
    }
}

@media (max-width: 1060px) {
    .ps-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 760px) {
    .ps-footer__inner,
    .ps-footer__bottom-inner {
        width: min(100% - 24px, 1280px);
    }

    .ps-footer__inner {
        padding: 44px 0 38px;
    }

    .ps-footer__nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ps-footer__bottom-inner {
        min-height: 86px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .ps-footer__bottom a {
        margin: 0 18px 0 0;
    }
}
