body {
    background: #4a90c2;
    min-height: 100vh;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    padding-top: 120px;
}

.feedback-bg {
    min-height: 100vh;
    background: url('../images/feedback-bg.png') center center/cover no-repeat, #4a90c2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
}

.feedback-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 64px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
    margin-top: 40px;
    text-align: center;
}

.feedback-form {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 40px 32px 32px 32px;
    max-width: 1100px;
    width: 90vw;
    margin: 0 auto 48px auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feedback-form label {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-form input,
.feedback-form textarea {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-family: inherit;
    background: #f8f8f8;
    resize: none;
    outline: none;
    transition: border 0.2s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border: 1.5px solid #4a90c2;
    background: #fff;
}

.feedback-btn {
    margin-top: 18px;
    background: #3887c6;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.feedback-btn:hover {
    background: #2566a6;
}

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}
.radio-group label {
    font-weight: normal;
}

@media (max-width: 700px) {
    .feedback-title {
        font-size: 2rem;
    }
    .feedback-form {
        padding: 18px 8px 18px 8px;
        border-radius: 14px;
    }
}