.feedback {
    border: 1px solid rgba(226, 48, 43, 1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 15px 14px 15px;
    margin-top: 60px;
    margin-bottom: 23px;
}
.feedback-text {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.1px;
}
.feedback-link {
    background: rgba(209, 46, 40, 1);
    color: #fff;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: 51px;
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px 10px 15px;
    line-height: 17px;
    border: none;
}
@media (max-width: 576px) {
    .feedback {
        flex-wrap: wrap;
    }

    .feedback-text {
        width: 100%;
    }

    .feedback-link {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
}