@charset "utf-8";
/* CSS Document */
/*============ Баннер ===============*/
.feedback-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #f4f4f4; /* Светлый фон */
}

.feedback-banner-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff; /* Белый фон */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-banner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feedback-banner-image {
    width: 150px; /* Картинка стала больше */
    height: 150px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.feedback-banner-container:hover .feedback-banner-image {
    transform: rotate(15deg);
}

.feedback-banner-content {
    display: flex;
    flex-direction: column;
}

.feedback-banner-heading {
    font-size: 28px; /* Чуть больше для яркости */
    margin: 0 0 10px;
    font-weight: bold;
    color: #b30000; /* Темный красный */
    transition: color 0.3s ease;
}

.feedback-banner-container:hover .feedback-banner-heading {
    color: #ff9f8b; /* Светлый красный при наведении */
}

.feedback-banner-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feedback-banner-container {
        flex-direction: column;
        align-items: center;
    }

    .feedback-banner-image {
        margin-bottom: 15px;
    }

    .feedback-banner-heading {
        font-size: 24px;
    }

    .feedback-banner-text {
        font-size: 14px;
    }
}
/*============ Блок 2 - Форма ===============*/
 .feedback-form {
            padding: 50px 20px;
            color: #333;
        }

        .feedback-form-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .feedback-form-heading {
            font-size: 28px;
            font-weight: bold;
            color: #b30000;
            margin-bottom: 10px;
            text-align: center;
        }

        .feedback-form-subtitle {
            text-align: center;
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
        }

        .feedback-type-selector {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .feedback-type-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 2px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            color: #666;
            background-color: #f0f0f0;
        }

        .feedback-type-option.selected {
            background-color: #b30000;
            color: white;
            border-color: #b30000;
        }

        .feedback-type-option:hover:not(.selected) {
            background-color: #e0e0e0;
        }

        .feedback-type-option svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .feedback-form-label {
            font-size: 16px;
            margin-bottom: 5px;
            display: block;
        }

        .feedback-form-input,
        .feedback-form-select,
        .feedback-form-textarea,
        .feedback-form-file {
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            width: 100%;
        }

        .feedback-form-textarea {
            height: 150px;
            resize: vertical;
        }

        .feedback-form-file {
            padding: 5px;
        }
.feedback-form-note {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}
        .feedback-form-consent {
            margin-bottom: 20px;
        }

        .feedback-form-consent input {
            margin-right: 10px;
        }

        .feedback-form-submit {
            padding: 12px;
            background-color: #b30000;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .feedback-form-submit:hover {
            background-color: #ff9f8b;
        }

        .feedback-form-type {
            transition: opacity 0.3s ease-in-out;
        }

        .feedback-form-subheading {
            font-size: 18px;
            font-weight: bold;
            color: #b30000;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .feedback-form-container {
                padding: 30px;
            }

            .feedback-form-heading {
                font-size: 22px;
            }

            .feedback-form-input,
            .feedback-form-select,
            .feedback-form-textarea {
                font-size: 14px;
            }

            .feedback-form-submit {
                font-size: 14px;
            }

            .feedback-type-selector {
                flex-direction: column;
                align-items: stretch;
            }

            .feedback-type-option {
                justify-content: center;
            }
        }
/*============ Блок 3 - Ссылки на документы ===============*/
.feedback-info{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.feedback-info-container {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.8s ease forwards;
}

.feedback-info-doc {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.feedback-info-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feedback-info-link {
    font-weight: 600;
    color: #333;
    text-decoration: none;
	font-size: 1.3rem;
    transition: color 0.3s ease;
}

.feedback-info-link:hover {
    color: #e63946;
}

.feedback-info-doc:hover .feedback-info-icon {
    transform: scale(1.1);
}


/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
