.feedback__title {
    margin-bottom: 15px !important;
    font-size: clamp(1.72rem, 3vw, 2.58rem); /* ~ от 24px до 36px*/
    line-height: 0.9;
}

.feedback__text {
    width: 50%;
    margin-bottom: 40px !important;
    font-size: 20px;
    line-height: 22px;
}

.feedback__button {
    max-width: 300px;
    width: 100%;
    height: 50px;
    padding: 15px 0;
    background-color: var(--NoElectricBlue);
    border-radius: 10px;
    border: none;
    color: var(--SuperWhite);
    font-size: 16px;
}

.feedback__button:hover {
    opacity: 0.8 !important;
}

.feedback__button:focus-visible {
    outline: none !important;
}

@media (max-width: 767px) {
    .feedback {
        padding: 0 20px 40px 20px;
    }
    
    .feedback__text {
        width: 100%;
        margin-bottom: 25px !important;
        font-size: 14px;
        line-height: 16px;
    }
}