.contact-page {
    background: #f5f7fb !important;
    color: #172033;
}

.contact-page__hero {
    position: relative;
    display: flex;
    min-height: 360px;
    align-items: center;
    overflow: hidden;
    background: #263244 url("/web/assets/banner/contact-us-banner-2.jpg") no-repeat center;
    background-size: cover;
}

.contact-page__hero::before {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 38, 0.68);
    content: "";
}

.contact-page__hero .container {
    position: relative;
    z-index: 1;
}

.contact-page__hero-copy {
    max-width: 690px;
    padding: 62px 0 88px;
    color: #fff;
}

.contact-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-page__eyebrow i {
    color: var(--sc, #006eff);
    font-size: 17px;
}

.contact-page__hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.12;
}

.contact-page__hero p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.65;
}

.contact-page__content {
    position: relative;
    z-index: 2;
    padding: 0 0 72px;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
    gap: 28px;
    align-items: start;
    margin-top: -48px;
}

.contact-page__form-panel,
.contact-page__details {
    border: 1px solid #e1e7f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.contact-page__form-panel {
    padding: 36px;
}

.contact-page__details {
    padding: 30px;
}

.contact-page__brand-profile {
    border-bottom: 1px solid #e6ebf2;
    margin-bottom: 24px;
    padding-bottom: 22px;
}

.contact-page__brand-profile > div {
    align-items: center;
    display: flex;
    gap: 13px;
}

.contact-page__brand-profile img {
    border: 1px solid #dfe6ef;
    border-radius: 6px;
    height: 54px;
    object-fit: contain;
    padding: 6px;
    width: 94px;
}

.contact-page__brand-profile span,
.contact-page__brand-profile small,
.contact-page__brand-profile strong,
.contact-page__brand-profile em {
    display: block;
}

.contact-page__brand-profile small,
.contact-page__brand-profile em {
    color: #7b8798;
    font-size: 11px;
    font-style: normal;
}

.contact-page__brand-profile strong {
    color: #172033;
    font-size: 17px;
    font-weight: 600;
    margin: 2px 0;
}

.contact-page__brand-profile p {
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
    margin: 14px 0 0;
}

.contact-page__section-heading {
    margin-bottom: 28px;
}

.contact-page__section-heading > span {
    display: block;
    margin-bottom: 5px;
    color: var(--pc, #123ea5);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-page__section-heading h2 {
    margin: 0 0 8px;
    color: #172033;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
}

.contact-page__section-heading p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}

.contact-page__alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 22px 0 66px;
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.contact-page__alert--success {
    border-color: #a7e0bd;
    background: #f0fbf4;
    color: #176338;
}

.contact-page__alert--danger {
    border-color: #f3b3b8;
    background: #fff4f4;
    color: #9d2430;
}

.contact-page__alert--info {
    border-color: #b8d5fa;
    background: #f2f7ff;
    color: #184f91;
}

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

.contact-page__field {
    min-width: 0;
}

.contact-page__field--phone {
    max-width: 360px;
}

.contact-page__field--wide {
    grid-column: 1 / -1;
}

.contact-page__field label,
.contact-page__captcha-entry label {
    display: block;
    margin-bottom: 7px;
    color: #263244;
    font-size: 13px;
    font-weight: 600;
}

.contact-page__field label span,
.contact-page__captcha-entry label span {
    color: #d92d20;
}

.contact-page__input-wrap {
    position: relative;
}

.contact-page__input-wrap > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 1;
    color: #8995a7;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-page__input-wrap--textarea > i {
    top: 17px;
    transform: none;
}

.contact-page__input-wrap input,
.contact-page__input-wrap textarea,
.contact-page__captcha-entry input {
    width: 100%;
    border: 1px solid #cfd8e6;
    border-radius: 5px;
    outline: 0;
    background: #fff;
    color: #172033;
    font-size: 14px;
    line-height: 1.5;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-page__input-wrap input {
    height: 46px;
    padding: 10px 14px 10px 42px;
}

.contact-page__input-wrap textarea {
    min-height: 154px;
    padding: 13px 14px 13px 42px;
    resize: vertical;
}

.contact-page__input-wrap input::placeholder,
.contact-page__input-wrap textarea::placeholder,
.contact-page__captcha-entry input::placeholder {
    color: #98a2b3;
}

.contact-page__input-wrap input:focus,
.contact-page__input-wrap textarea:focus,
.contact-page__captcha-entry input:focus {
    border-color: var(--pc, #123ea5);
    box-shadow: 0 0 0 3px rgba(var(--pc-rgb, 18, 62, 165), 0.12);
}

.contact-page__input-wrap .is-invalid,
.contact-page__captcha-entry .is-invalid {
    border-color: #d92d20;
    background: #fffafa;
}

.contact-page__field-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    color: #7b8798;
    font-size: 11px;
}

.contact-page__error {
    display: block;
    margin-top: 6px;
    color: #c5272f !important;
    font-size: 12px;
    line-height: 1.4;
}

.contact-page__security {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid #dbe4f0;
    border-left: 3px solid var(--pc, #123ea5);
    border-radius: 6px;
    background: #f8fafc;
}

.contact-page__security-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
}

.contact-page__security-copy > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(var(--pc-rgb, 18, 62, 165), 0.12);
    color: var(--pc, #123ea5);
}

.contact-page__security-copy > span img {
    display: block;
    height: 34px;
    object-fit: contain;
    width: 34px;
}

.contact-page__security-copy h3 {
    margin: 0 0 2px;
    color: #172033;
    font-size: 15px;
    font-weight: 600;
}

.contact-page__security-copy p {
    margin: 0;
    color: #667085;
    font-size: 12px;
}

.contact-page__captcha {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-page__captcha-visual {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.contact-page__captcha-image {
    width: 220px;
    height: 64px;
    flex: 0 0 220px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
}

.contact-page__captcha-image img {
    display: block;
    width: 220px;
    height: 64px;
}

.contact-page__captcha-refresh {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--pc, #123ea5);
    font-size: 12px;
    cursor: pointer;
}

.contact-page__captcha-refresh:hover,
.contact-page__captcha-refresh:focus-visible {
    border-color: var(--pc, #123ea5);
    background: #fff;
}

.contact-page__captcha-refresh.is-loading i {
    animation: contact-captcha-spin 700ms linear infinite;
}

@keyframes contact-captcha-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-page__captcha-entry {
    width: 180px;
    max-width: 100%;
}

.contact-page__captcha-entry input {
    height: 42px;
    padding: 9px 12px;
    letter-spacing: 3px;
}

.contact-page__captcha-entry small {
    display: block;
    margin-top: 5px;
    color: #7b8798;
    font-size: 11px;
}

.contact-page__form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.contact-page__submit {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 20px;
    border: 1px solid var(--pc, #123ea5);
    border-radius: 5px;
    background: var(--pc, #123ea5);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.contact-page__submit:hover,
.contact-page__submit:focus-visible {
    border-color: var(--sc, #006eff);
    background: var(--sc, #006eff);
    color: #fff;
}

.contact-page__submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.contact-page__form-actions p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #7b8798;
    font-size: 11px;
    line-height: 1.5;
}

.contact-page__form-actions p i {
    color: #29864c;
}

.contact-page__trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-page__detail-list {
    display: grid;
    gap: 10px;
}

.contact-page__detail {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid #e1e7f0;
    border-radius: 6px;
    background: #fff;
    color: #172033;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.contact-page__detail > span:first-child {
    box-sizing: border-box;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 7px;
    background: rgba(var(--sc-rgb, 241, 169, 11), 0.1);
    color: var(--pc, #123ea5);
    padding: 7px;
}

.contact-page__detail > span:first-child img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.contact-page__detail > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-page__detail small,
.contact-page__office small,
.contact-page__hours small {
    color: #7b8798;
    font-size: 11px;
}

.contact-page__detail strong,
.contact-page__office strong,
.contact-page__hours strong {
    overflow-wrap: anywhere;
    color: #263244;
    font-size: 13px;
    font-weight: 600;
}

.contact-page__detail > i {
    color: #98a2b3;
    font-size: 11px;
}

.contact-page__detail:hover,
.contact-page__detail:focus-visible {
    border-color: var(--pc, #123ea5);
    background: rgba(var(--pc-rgb, 18, 62, 165), 0.035);
    color: #172033;
}

.contact-page__office,
.contact-page__hours {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e6ebf2;
}

.contact-page__office > span,
.contact-page__hours > i {
    box-sizing: border-box;
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 7px;
    background: rgba(var(--sc-rgb, 241, 169, 11), 0.1);
    color: var(--pc, #123ea5);
    padding: 6px;
}

.contact-page__office > span img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.contact-page__office > div,
.contact-page__hours > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-page__hours span {
    color: #667085;
    font-size: 12px;
}

.contact-page__alternate {
    display: inline-block;
    margin-top: 16px;
    color: #667085;
    font-size: 12px;
}

.contact-page__alternate strong {
    color: var(--pc, #123ea5);
    font-weight: 600;
}

.contact-page__resources {
    border-top: 1px solid #e6ebf2;
    display: grid;
    gap: 0;
    margin-top: 22px;
    padding-top: 14px;
}

.contact-page__resources a {
    align-items: center;
    color: #263244;
    display: grid;
    gap: 10px;
    grid-template-columns: 24px minmax(0, 1fr) 12px;
    min-height: 52px;
    padding: 7px 2px;
    text-decoration: none;
}

.contact-page__resources a + a {
    border-top: 1px solid #edf1f5;
}

.contact-page__resources a > i:first-child {
    color: var(--sc, #006eff);
    text-align: center;
}

.contact-page__resources a > i:last-child {
    color: #98a2b3;
    font-size: 10px;
}

.contact-page__resources small,
.contact-page__resources strong {
    display: block;
}

.contact-page__resources small {
    color: #7b8798;
    font-size: 10px;
}

.contact-page__resources strong {
    font-size: 12px;
    font-weight: 600;
}

.contact-page__resources a:hover,
.contact-page__resources a:focus-visible {
    color: var(--pc, #123ea5);
}

.contact-page__social {
    border-top: 1px solid #e6ebf2;
    margin-top: 14px;
    padding-top: 18px;
}

.contact-page__social > small {
    color: #7b8798;
    display: block;
    font-size: 11px;
    margin-bottom: 10px;
}

.contact-page__social > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-page__social a {
    align-items: center;
    background: rgba(var(--pc-rgb, 18, 62, 165), 0.08);
    border: 1px solid rgba(var(--pc-rgb, 18, 62, 165), 0.16);
    border-radius: 50%;
    color: var(--pc, #123ea5);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    text-decoration: none;
    width: 34px;
}

.contact-page__social a:hover,
.contact-page__social a:focus-visible {
    background: var(--pc, #123ea5);
    border-color: var(--pc, #123ea5);
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .contact-page__hero {
        min-height: 320px;
    }

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

    .contact-page__details {
        display: grid;
        grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
        gap: 0 28px;
    }

    .contact-page__details .contact-page__section-heading {
        grid-column: 1 / -1;
    }

    .contact-page__brand-profile {
        grid-column: 1 / -1;
    }

    .contact-page__detail-list {
        grid-row: span 4;
    }

    .contact-page__office {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .contact-page__hours {
        margin-top: 16px;
        padding-top: 16px;
    }

    .contact-page__resources,
    .contact-page__social {
        grid-column: 2;
    }
}

@media (max-width: 767.98px) {
    .contact-page__hero-copy {
        padding: 52px 0 78px;
    }

    .contact-page__hero h1 {
        font-size: 36px;
    }

    .contact-page__hero p {
        font-size: 16px;
    }

    .contact-page__content {
        padding-bottom: 50px;
    }

    .contact-page__form-panel,
    .contact-page__details {
        padding: 24px;
    }

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

    .contact-page__field--wide {
        grid-column: auto;
    }

    .contact-page__field--phone {
        max-width: none;
    }

    .contact-page__details {
        display: block;
    }

    .contact-page__office {
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid #e6ebf2;
    }
}

@media (max-width: 575.98px) {
    .contact-page__hero {
        min-height: 290px;
        background-position: 62% center;
    }

    .contact-page__hero-copy {
        padding: 42px 0 72px;
    }

    .contact-page__hero h1 {
        font-size: 31px;
    }

    .contact-page__hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-page__layout {
        gap: 18px;
        margin-top: -38px;
    }

    .contact-page__form-panel,
    .contact-page__details {
        padding: 20px 16px;
        border-radius: 6px;
    }

    .contact-page__section-heading h2 {
        font-size: 22px;
    }

    .contact-page__captcha {
        flex-direction: column;
    }

    .contact-page__captcha-visual {
        width: 100%;
    }

    .contact-page__captcha-image,
    .contact-page__captcha-image img {
        width: min(220px, calc(100vw - 110px));
    }

    .contact-page__captcha-entry {
        width: 100%;
    }

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

    .contact-page__field-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
