.feedback-form {
    max-width: 760px;
    margin: 0 auto;
}

.feedback-form .form-block {
    margin-bottom: 28px;
}

.feedback-form .form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.feedback-form .required,
.feedback-form .optional {
    color: #c44;
    font-size: 0.9em;
    font-weight: normal;
    margin-left: 0.3em;
}

.feedback-form .form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.feedback-form .form-options label {
    display: flex;
    align-items: flex-start;
    gap: 0.45em;
    line-height: 1.7;
    cursor: pointer;
}

.feedback-form input[type="radio"],
.feedback-form input[type="checkbox"] {
    margin-top: 0.45em;
    flex-shrink: 0;
}

.feedback-form input[type="text"],
.feedback-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.7;
    background: #fff;
}

.feedback-form textarea {
    resize: vertical;
}

.feedback-form .form-submit {
    text-align: center;
    margin-top: 34px;
}

.feedback-form button {
    display: inline-block;
    min-width: 220px;
    padding: 13px 28px;
    border: none;
    border-radius: 6px;
    background: #7a4b3a;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.feedback-form button:hover {
    opacity: 0.85;
}

@media screen and (max-width: 600px) {
    .feedback-form {
        max-width: 100%;
    }

    .feedback-form .form-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feedback-form button {
        width: 100%;
    }
}