.sg-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.sg-brand:hover {
    color: var(--theme-color);
}

.sg-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    color: #fff;
    background: var(--theme-color);
    font-size: 20px;
}

.sg-footer-brand {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sg-footer-brand:hover {
    color: #fff;
}

.selector-hero {
    position: relative;
    padding: 150px 0 90px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.selector-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 19, 39, .78);
}

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

.selector-intro {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
    color: #fff;
}

.selector-intro h1 {
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.selector-intro p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 0;
}

.selector-panel {
    height: 100%;
    padding: 38px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .16);
}

.selector-panel .selector-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 8px;
    color: #fff;
    background: var(--theme-color);
    font-size: 30px;
}

.selector-panel h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.selector-panel p {
    margin-bottom: 24px;
}

.sg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    color: var(--theme-color);
    background: rgba(238, 46, 36, .08);
    font-size: 34px;
}

.sg-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.sg-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.sg-list i {
    color: var(--theme-color);
    margin-top: 5px;
}

.sg-cta {
    background-size: cover;
    background-position: center;
}

.contact-alert {
    padding: 18px 22px;
    border-radius: 8px;
    color: #0f5132;
    background: #d1e7dd;
    margin-bottom: 24px;
}

.sg-contact-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .09);
}

.sg-contact-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.sg-contact-card-body {
    padding: 34px;
}

.sg-contact-card-body h2 {
    font-size: 34px;
    margin: 12px 0 14px;
}

.sg-contact-card-body a {
    color: inherit;
}

.field-validation-error {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 6px;
}

.input-validation-error {
    border-color: #dc3545 !important;
}

@media (max-width: 767px) {
    .selector-hero {
        padding: 115px 0 70px;
    }

    .selector-intro h1 {
        font-size: 40px;
    }

    .selector-panel {
        padding: 28px;
    }

    .sg-contact-card img {
        height: 230px;
    }

    .sg-contact-card-body {
        padding: 26px;
    }

    .sg-contact-card-body h2 {
        font-size: 28px;
    }
}
