.tell-us__container {
    display: flex;
    justify-content: space-between;
    gap: 6.125rem;
}

.tell-us__content {
    max-width: 660px;
    font-family: "Segoe UI Symbol", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 140%;

    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tell-us__text-top-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    max-width: 580px;
}

.tell-us__text-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tell-us__notes-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tell-us__note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    line-height: 140%;
    width: max-content;
}

.tell-us__note.blur-bg {
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.tell-us__note.blur-bg:hover {
    box-shadow: 0 3.959px 14.845px 0 rgba(0, 0, 0, 0.2),
        0 0.99px 0 0 rgba(255, 255, 255, 0.4) inset,
        0 3.959px 19.794px 0 rgba(255, 0, 23, 0.3) inset;
    transform: scale(1.02);
}

.tell-us__text {
    font-family: "Segoe UI Symbol";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 140%;
}

.tell-us__text--highlighted {
    display: inline-block;
    position: relative;
    width: max-content;
    color: #83ff8f;
    font-weight: 600;
    line-height: 140%;
    transition: color 0.3s ease;
    text-decoration: none;
}

.tell-us__text--highlighted::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #dbffb5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.tell-us__text--highlighted:hover,
.tell-us__text--highlighted:focus,
.tell-us__text--highlighted:focus-visible {
    outline: none;
    color: #dbffb5;
}

.tell-us__text--highlighted:hover::before,
.tell-us__text--highlighted:focus::before,
.tell-us__text--highlighted:focus-visible::before {
    transform: scaleX(1);
}

.tell-us__text--highlighted:active {
    color: #a6ffb8;
}

.tell-us__text--highlighted:active::before {
    background: #a6ffb5;
}

/* Media queries moved to the end */
@media (max-width: 1440px) {
    .tell-us__container {
        gap: 4rem;
    }

    .tell-us__content {
        max-width: 600px;
        gap: 2rem;
    }

    .tell-us__text-top-container {
        gap: 1.5rem;
        max-width: 550px;
    }

    .tell-us__text {
        font-size: 1rem;
    }

}

@media (max-width: 1280px) {
    .tell-us__container {
        gap: 3rem;
    }

    .tell-us__content {
        max-width: 550px;
        font-size: 1rem;
        gap: 1.75rem;
    }

    .tell-us__text-top-container {
        gap: 1.25rem;
        max-width: 100%;
    }

    .tell-us__note {
        font-size: 1rem;
    }
}

@media (max-width: 1023.98px) {
    .tell-us__container {
        flex-direction: column;
        gap: 3.125rem;
    }

    .tell-us__content {
        max-width: 100%;
        width: 100%;
    }

    .tell-us__text-top-container {
        max-width: 100%;
    }

    .tell-us__notes-container {
        align-items: center;
    }

    .tell-us__text-bottom-container .tell-us__text {
        text-align: center;
    }

}

@media (max-width: 767.98px) {
    .tell-us__container {
        gap: 3rem;
    }

    .tell-us__text-top-container {
        gap: 1.5rem;
    }

    .tell-us__notes-container {
        gap: 0.75rem;
    }

    .tell-us__note {
        font-size: 1rem;
        line-height: 1.2;
    }

    .tell-us__text {
        font-size: 1rem;
    }
}
