.contact-us {
    --navy: #ffffff;
    --navy2: #0b2030;
    --ink: #17202b;
    --muted: #6e7885;
    --paper: #f5f6f7;
    --teal: #D2241D;
    --orange: #D2241D;
    --line: #dfe4e7;
    background: var(--paper);
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
}
.contact-us * {
    box-sizing: border-box;
}
.contact-us a {
    text-decoration: none;
}
.contact-us button,
.contact-us input,
.contact-us select,
.contact-us textarea {
    font-family: "Space Grotesk", sans-serif;
}
.contact-us-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D2241D;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.contact-us-tag i {
    color: var(--orange);
    font-size: 8px;
}
.contact-us-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 83px;
    background:
        radial-gradient(circle at 10% 10%, rgba(210, 36, 29, 0.55) 0%, rgba(210, 36, 29, 0.15) 35%, transparent 60%),
        linear-gradient(135deg, #1a0705 0%, #0c0503 55%, #050202 100%);
    color: #fff;
}
.contact-us-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            rgba(210, 36, 29, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(210, 36, 29, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.contact-us-crumb,
.contact-us-hero-grid {
    position: relative;
    z-index: 1;
}
.contact-us-crumb {
    margin-bottom: 49px;
    color: rgba(255, 255, 255, 0.46);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
}
.contact-us-crumb a {
    color: rgba(255, 255, 255, 0.67);
}
.contact-us-crumb span {
    margin: 0 8px;
}
.contact-us-hero-grid {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 35px;
    align-items: center;
}
.contact-us-hero h1 {
    margin: 12px 0 17px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.94;
}
.contact-us-hero p {
    max-width: 535px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.8;
}
.contact-us-hero-side {
    justify-self: end;
    width: 138px;
    height: 138px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(194, 24, 24, 0.75);
    border-radius: 50%;
    color: var(--teal);
    text-align: center;
    background-color:  rgb(255, 255, 255);
}
.contact-us-hero-side strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 37px;
    line-height: 1;
}
.contact-us-hero-side span {
    display: block;
    margin-top: 5px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-us-routes {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.contact-us-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.contact-us-route {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 0 17px;
    border-right: 1px solid var(--line);
    color: var(--ink);
}
.contact-us-route:last-child {
    border: 0;
}
.contact-us-route:hover {
    background: #fafcfc;
}
.contact-us-route i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #bdece8;
    color: #0ca99d;
    font-size: 12px;
}
.contact-us-route small {
    display: block;
    color: #84909a;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.contact-us-route strong {
    display: block;
    margin-top: 3px;
    font-size: 12px;
}
.contact-us-main {
    padding: 72px 0;
}
.contact-us-title {
    text-align: center;
}
.contact-us-title .contact-us-tag {
    justify-content: center;
}
.contact-us-title h2 {
    margin: 8px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 31px;
    line-height: 1.05;
}
.contact-us-work {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
    gap: 0;
    max-width: 950px;
    margin: 39px auto 0;
    border: 1px solid #dce2e5;
    background: #fff;
    box-shadow: 0 15px 28px rgba(24, 38, 55, 0.06);
}
.contact-us-form {
    padding: 34px 38px;
}
.contact-us-form-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 27px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}
.contact-us-form-head h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
}
.contact-us-form-head span {
    color: #84909a;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    text-transform: uppercase;
}
.contact-us-alert {
    position: relative;
    margin-bottom: 15px;
    padding: 12px;
    border-left: 3px solid #D2241D;
    background: #edfbfa;
    color: #087f76;
    font-size: 12px;
}
.contact-us-alert-error {
    border-color: #df5d5d;
    background: #fff0f0;
    color: #aa3030;
}
.contact-us-alert ul {
    margin: 4px 0 0;
    padding-left: 16px;
}
.contact-us-alert-close {
    position: absolute;
    right: 7px;
    top: 5px;
    border: 0;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
}
.contact-us-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 19px;
}
.contact-us-field {
    margin-bottom: 2px;
}
.contact-us-field.contact-us-full {
    grid-column: 1/-1;
}
.contact-us-field label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-size: 11px;
    font-weight: 700;
}
.contact-us-field label b {
    color: #11aaa0;
}
.contact-us-field input,
.contact-us-field select,
.contact-us-field textarea {
    width: 100%;
    border: 1px solid #dce3e6;
    background: #fbfcfc;
    color: #1c2733;
    padding: 10px 11px;
    border-radius: 1px;
    font-size: 12px;
    outline: none;
    transition: 0.2s;
}
.contact-us-field input,
.contact-us-field select {
    height: 39px;
}
.contact-us-field textarea {
    min-height: 105px;
    resize: vertical;
    line-height: 1.6;
}
.contact-us-field input:focus,
.contact-us-field select:focus,
.contact-us-field textarea:focus {
    border-color: #16b5a9;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(24, 194, 180, 0.1);
}
.contact-us-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 21px;
}
.contact-us-submit {
    border: 0;
    background: var(--orange);
    padding: 11px 17px;
    color: #1e252b;
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 4px 4px 0 #17202b;
}
.contact-us-submit:hover {
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 #17202b;
}
.contact-us-note {
    max-width: 215px;
    margin: 0;
    color: #8a939c;
    font-size: 10px;
    line-height: 1.5;
}
.contact-us-side {
    padding: 31px 29px;
    background: var(--navy);
    color: #000000;
}
.contact-us-side h3 {
    margin: 8px 0 23px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 25px;
    line-height: 1;
}
.contact-us-detail {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-us-detail i {
    color: #000000;
    font-size: 13px;
}
.contact-us-detail span {
    display: block;
    margin-bottom: 3px;
    color: #000000;
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-us-detail div,
.contact-us-detail a {
    color: #000000;
    font-size: 11px;
    line-height: 1.55;
}
.contact-us-hours {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid rgba(24, 194, 180, 0.26);
    color: #000000;
    font-size: 10px;
    line-height: 1.7;
}
.contact-us-hours strong {
    display: block;
    margin-bottom: 3px;
    color: var(--teal);
    font-family: "Space Grotesk", sans-serif;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-us-map {
    height: 125px;
    margin: 19px -29px -31px;
}
.contact-us-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.7) contrast(1.12);
}
.contact-us-process {
    padding: 68px 0;
    background: #fff;
    border-top: 1px solid var(--line);
}
.contact-us-process-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 48px;
    align-items: start;
}
.contact-us-process-copy h2 {
    margin: 8px 0 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 31px;
    line-height: 1.02;
}
.contact-us-process-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}
.contact-us-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #dce4e7;
}
.contact-us-step {
    min-height: 151px;
    padding: 19px;
    background: #fff;
}
.contact-us-step-no {
    color: #11aaa0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
}
.contact-us-step h4 {
    margin: 18px 0 7px;
    font-size: 13px;
}
.contact-us-step p {
    margin: 0;
    color: #77828c;
    font-size: 10px;
    line-height: 1.6;
}
.contact-us-faq {
    padding: 71px 0;
    background: var(--paper);
}
.contact-us-faq-wrap {
    max-width: 850px;
    margin: auto;
}
.contact-us-faq-head {
    text-align: center;
    margin-bottom: 26px;
}
.contact-us-faq-head .contact-us-tag {
    justify-content: center;
}
.contact-us-faq-head h2 {
    margin: 8px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 31px;
}
.contact-us-faq-item {
    border-bottom: 1px solid #dce2e5;
}
.contact-us-faq-q {
    display: grid;
    grid-template-columns: 34px 1fr 20px;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}
.contact-us-faq-q small {
    color: #D2241D;
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
}
.contact-us-faq-q strong {
    font-size: 13px;
}
.contact-us-faq-q i {
    color: #D2241D;
    font-size: 11px;
    transition: 0.2s;
}
.contact-us-faq-item.contact-us-open .contact-us-faq-q i {
    transform: rotate(45deg);
}
.contact-us-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s;
}
.contact-us-faq-item.contact-us-open .contact-us-faq-a {
    max-height: 160px;
}
.contact-us-faq-a p {
    max-width: 660px;
    margin: 0;
    padding: 0 34px 18px;
    color: #707b86;
    font-size: 12px;
    line-height: 1.7;
}
.contact-us-clients {
    padding: 60px 0;
    background: #fff;
}
.contact-us-clients p {
    text-align: center;
    color: #7b8791;
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.contact-us-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
}
.contact-us-logo {
    display: grid;
    place-items: center;
    width: 135px;
    height: 67px;
    border: 1px solid var(--line);
    padding: 13px;
}
.contact-us-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1);
    opacity: 0.73;
    transition: 0.2s;
}
.contact-us-logo:hover img {
    filter: none;
    opacity: 1;
}
.contact-us-cta {
    padding: 74px 0;
    background: #101d2c;
    color: #fff;
    text-align: center;
}
.contact-us-cta .contact-us-tag {
    justify-content: center;
}
.contact-us-cta h2 {
    margin: 13px 0 11px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.08;
}
.contact-us-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}
.contact-us-book {
    margin-top: 27px;
    border: 0;
    background: var(--orange);
    padding: 14px 21px;
    color: #1d242b;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}
/* Larger, more editorial typography */
.contact-us-title h2,
.contact-us-process-copy h2,
.contact-us-faq-head h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.05;
}
.contact-us-form-head h3,
.contact-us-side h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.04em;
}
.contact-us-form-head span,
.contact-us-side .contact-us-tag,
.contact-us-field label,
.contact-us-route small {
    font-family: "Space Grotesk", sans-serif;
}
.contact-us-title {
    margin-bottom: 8px;
}
.contact-us-main {
    padding: 91px 0;
}
.contact-us-work {
    margin-top: 47px;
}
.contact-us-form {
    padding: 44px 46px;
}
.contact-us-side {
    padding: 41px 36px;
}
.contact-us-route {
    min-height: 91px;
}
.contact-us-route strong {
    font-size: 13px;
}
.contact-us-process {
    padding: 85px 0;
}
.contact-us-faq {
    padding: 88px 0;
}
.contact-us-faq-q {
    padding: 22px 0;
}
.contact-us-faq-q strong {
    font-size: 15px;
}
.contact-us-map {
    margin-left: -36px;
    margin-right: -36px;
    margin-bottom: -41px;
}
@media (max-width: 991px) {
    .contact-us-work,
    .contact-us-process-grid {
        grid-template-columns: 1fr;
    }
    .contact-us-process-grid {
        gap: 31px;
    }
    .contact-us-side {
        min-height: 360px;
    }
    .contact-us-hero-grid {
        grid-template-columns: 1fr 115px;
    }
    .contact-us-routes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-us-route:last-child {
        border-top: 1px solid var(--line);
    }
}
@media (max-width: 575px) {
    .contact-us-hero {
        padding: 44px 0;
    }
    .contact-us-hero h1 {
        font-size: 39px;
    }
    .contact-us-hero-grid {
        grid-template-columns: 1fr;
    }
    .contact-us-hero-side {
        display: none;
    }
    .contact-us-routes-grid,
    .contact-us-fields,
    .contact-us-steps {
        grid-template-columns: 1fr;
    }
    .contact-us-route {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .contact-us-route:last-child {
        border-top: 0;
    }
    .contact-us-main {
        padding: 53px 0;
    }
    .contact-us-form {
        padding: 26px 20px;
    }
    .contact-us-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .contact-us-step {
        min-height: 120px;
    }
    .contact-us-logo {
        width: calc(50% - 5px);
    }
}
/* Use Space Grotesk for every text element on this page. Icons keep Font Awesome. */
.contact-us,
.contact-us :not(i) {
    font-family: "Space Grotesk", sans-serif !important;
}
.contact-us-hero h1,
.contact-us-hero-side strong,
.contact-us-title h2,
.contact-us-process-copy h2,
.contact-us-faq-head h2,
.contact-us-form-head h3,
.contact-us-side h3,
.contact-us-cta h2 {
    font-family: "Space Grotesk", sans-serif !important;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.06em;
}
.contact-us-hero h1 {
    line-height: 0.96;
}
.contact-us-title h2,
.contact-us-process-copy h2,
.contact-us-faq-head h2,
.contact-us-cta h2 {
    line-height: 1.08;
}
.contact-us-form-head h3,
.contact-us-side h3 {
    line-height: 1.12;
}
/* Global readability scale â€” deliberately larger across the full page */
.contact-us {
    font-size: 16px;
}
.contact-us-hero p {
    font-size: 17px;
}
.contact-us-crumb {
    font-size: 12px;
}
.contact-us-tag {
    font-size: 11px;
}
.contact-us-route small,
.contact-us-form-head span,
.contact-us-field label,
.contact-us-side .contact-us-tag,
.contact-us-detail span {
    font-size: 10px;
}
.contact-us-route strong {
    font-size: 15px;
}
.contact-us-title h2,
.contact-us-process-copy h2,
.contact-us-faq-head h2 {
    font-size: 48px;
}
.contact-us-form-head h3,
.contact-us-side h3 {
    font-size: 34px;
}
.contact-us-form-head span {
    font-size: 10px;
}
.contact-us-field label {
    font-size: 12px;
}
.contact-us-field input,
.contact-us-field select,
.contact-us-field textarea {
    font-size: 15px;
}
.contact-us-field input,
.contact-us-field select {
    height: 46px;
}
.contact-us-field textarea {
    min-height: 132px;
}
.contact-us-submit {
    padding: 14px 21px;
    font-size: 11px;
}
.contact-us-note {
    font-size: 12px;
    max-width: 255px;
}
.contact-us-detail div,
.contact-us-detail a {
    font-size: 14px;
}
.contact-us-hours {
    font-size: 12px;
}
.contact-us-process-copy p,
.contact-us-step p,
.contact-us-faq-a p {
    font-size: 14px;
}
.contact-us-step h4 {
    font-size: 16px;
}
.contact-us-step-no,
.contact-us-faq-q small {
    font-size: 11px;
}
.contact-us-faq-q strong {
    font-size: 17px;
}
.contact-us-clients p {
    font-size: 10px;
}
.contact-us-cta p {
    font-size: 16px;
}
.contact-us-book {
    font-size: 11px;
    padding: 14px 23px;
}
@media (max-width: 575px) {
    .contact-us-hero p {
        font-size: 15px;
    }
    .contact-us-title h2,
    .contact-us-process-copy h2,
    .contact-us-faq-head h2 {
        font-size: 37px;
    }
    .contact-us-form-head h3,
    .contact-us-side h3 {
        font-size: 29px;
    }
    .contact-us-faq-q strong {
        font-size: 15px;
    }
    .contact-us-detail div,
    .contact-us-detail a {
        font-size: 13px;
    }
}

/* =========================================================
   ABOUT-HERO SECTION (used on the Contact page blade markup)
   Matches the reference screenshot: dark background, red
   radial glow top-left, subtle grid, white bold heading,
   red underline, red breadcrumb accent.
   ========================================================= */
.about-hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 60px;
    background: #0c0503;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
}

.about-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(210, 36, 29, 0.55) 0%, rgba(210, 36, 29, 0.15) 35%, transparent 60%),
        linear-gradient(135deg, #1a0705 0%, #0c0503 55%, #050202 100%);
    z-index: 0;
}

.about-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
}

.about-hero-section .container {
    position: relative;
    z-index: 1;
}

.about-hero-inner {
    text-align: center;
}

.about-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 18px;
    border: 1px solid rgba(210, 36, 29, 0.4);
    border-radius: 30px;
    background: rgba(210, 36, 29, 0.08);
    color: #e7c9c7;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-hero-chip .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D2241D;
    box-shadow: 0 0 8px 2px rgba(210, 36, 29, 0.7);
}

.about-hero-inner h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
}

.about-hero-inner h1 .hero-accent {
    color: #D2241D;
}

.about-hero-inner h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 20px auto 0;
    background: #D2241D;
    border-radius: 2px;
}

.about-hero-inner p {
    max-width: 620px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.about-hero-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: 0.2s ease;
}

.about-hero-btn.is-primary {
    background: #D2241D;
    color: #ffffff;
    border: 1px solid #D2241D;
}

.about-hero-btn.is-primary:hover {
    background: #b81e18;
}

.about-hero-btn.is-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-hero-btn.is-outline:hover {
    border-color: #D2241D;
    color: #D2241D;
}

.about-hero-crumb {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-crumb a {
    color: #ffffff;
    text-decoration: none;
}

.about-hero-crumb .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.35);
}

.about-hero-crumb .current {
    color: #D2241D;
    font-weight: 600;
}

.about-hero-infobar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 24px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.about-hero-infobar > div {
    text-align: center;
}

.about-hero-infobar .label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-infobar .value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.about-hero-infobar .value:hover {
    color: #D2241D;
}

@media (max-width: 767px) {
    .about-hero-infobar {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .about-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}