.feedback-container {
    width: 100%;
    padding: 40px 5%;
    margin-top: 40px; /* ← вот он, воздушный зазор */
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

.feedback-container h1 {
    text-align: center;
    margin-bottom: 25px;
}

.feedback-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.feedback-form input[type="text"],
.feedback-form input[type="tel"],
.feedback-form input[type="email"],
.feedback-form textarea,
.feedback-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.feedback-form textarea {
    min-height: 120px;
    resize: vertical;
}

.feedback-form input[type="file"] {
    margin-top: 10px;
}

.feedback-form .consent {
    margin-top: 20px;
    font-weight: normal;
}

.feedback-form button {
    background-color: #0066cc;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    margin-top: 20px;
}

.feedback-form button:hover {
    background-color: #004999;
}

.info-box {
    background: #f4f6fb;
    border-left: 5px solid #364193;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
}

.info-box h2 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

.info-box h3 {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
    color: #000;
}
