.feedback-form-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border: none!important;
    padding: 80px 32px 0;
}

.feedback-form-inner {
    display: block;
    position: relative;
    z-index: 0;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(199, 199, 199, 0.38);
    border-radius: 5px;
    border: 1px solid #cccdd1;
    background-color: #fff;
}

@media (min-width: 960px) {
    .feedback-form-inner {
        padding: 25px 40px;
        border-radius: 3px;
    }
}

@media (min-width: 1200px) {
    .feedback-form-inner {
        padding-right: 280px;
    }
}

@media (min-width: 1357px) {
    .feedback-form-inner {
        padding-right: 380px;
    }
}

@media (max-width: 767px) {
    .feedback-form-container {
        padding-top: 40px;
    }
}

.feedback-form-inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    background-image: url(/local/assets/images/order-form-bg.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: 1;
}

.feedback-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.form_top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 85%;
    gap: 30px;
    align-items: stretch;
}

.form_left {
    width: 40%;
}

.form_right {
    width: 60%;
}

.feedback-form .form-group:not(:last-child) {
    margin-bottom: 20px;
}

.feedback-form .form-group:last-child {
    margin: 0;
}

.feedback-form .form_right .form-group {
    height: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: normal;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 14px;
    background: #fff;
}

.feedback-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
    max-height: 100%;
    height: calc(100% - 33px);
}

.privacy-policy {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: #004B8D;
    color: white;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #003666;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.file-upload img {
    width: 20px;
    height: 20px;
}

.file-upload span {
    color: #666;
    font-size: 14px;
}

.feedback-form input[type="file"] {
    display: none;
}

.form-messages {
    margin-top: 20px;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    padding: 10px;
    background: #d4edda;
    margin-top: 10px;
}

.form-control.error {
    border-color: #dc3545;
}

.form-control::placeholder {
    color: #999;
}

@media (max-width: 1200px) {
    .feedback-form-inner::before {
        opacity: 0.3;
    }
}

@media (max-width: 992px) {
    .form_top {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .form_top {
        flex-direction: column;
        gap: 20px;
    }

    .form_left, .form_right {
        width: 100%;
    }

    .feedback-form .form-control {
        border-color: #a3a2a2;
    }
}

@media (max-width: 480px) {
    .form-actions {
        flex-direction: column-reverse;
    }
}
