.stc-root {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #0d1b2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: stretch;
}

.stc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 45, 0.62);
    pointer-events: none;
}

.stc-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding-top: 8.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 0;
}

.stc-lines {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stc-line {
    display: block;
    height: 3px;
    width: 28px;
    background-color: #00a3e0;
    border-radius: 2px;
}

.stc-line--long {
    width: 80px;
}

.stc-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin: 0 0 1.25rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.stc-body {
    font-size: clamp(0.9rem, 1.5vw, 1.3rem) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-family: PrimaryFontLight !important;
    letter-spacing: 0.1px;
}

.stc-card {
    background-color: #004986;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.stc-card-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 400 !important;
    color: #00a3e0 !important;
    margin: 0 0 1.25rem !important;
    line-height: 1.2 !important;
}

.stc-card-body {
    font-size: clamp(0.9rem, 1.5vw, 1.3rem) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    font-family: PrimaryFontLight !important;
    letter-spacing: 0.1px;
}

@media (max-width: 768px) {
    .stc-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem;
        padding-bottom: 1rem;
    }

    .stc-left {
        padding-right: 0;
        padding-bottom: 0rem;
    }

    .stc-card {
        align-self: auto;
    }

    .stc-root .testimonial-quote-traces {
        margin-top: 45px !important;
        margin-bottom: 10px !important;
    }
}


@media (min-width: 1200px) {
    .stc-inner {
        gap: 7rem;
    }

    .stc-left {
        height: 350px;
    }

    .stc-card {
        height: 350px;
    }
}