/* Контейнер для кнопки */
        .feedback-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        /* Стили для кнопки */
        .feedback-btn {
            padding: 12px 30px;
            background: #189CD3;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
             font-weight: 700;
           font-family: 'Montserrat', sans-serif;
            transition: background 0.3s;
        }

        .feedback-btn:hover {
            background: #1d8fc7;
        }

        /* Стили модального окна */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            position: relative;
            
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: 700;
            color: #aaa;
            cursor: pointer;
            border: none;
            background: none;
        }

        .close-btn:hover {
            color: #333;
        }

        /* Стили формы */
        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 700;
           padding-bottom: 5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #189CD3;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
           font-weight: 700;
           font-family: 'Montserrat', sans-serif;
        }

        .submit-btn:hover {
            background: #1d8fc7;
        }

        #successMessage {
            display: none;
            padding: 15px;
            background: #e8f5e9;
            color: #2e7d32;
            border-radius: 4px;
            margin-top: 15px;
            text-align: center;
        }