.info-block {
    background: #FFFACD;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    width: 100%;
    max-width: 600px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    position: relative; /* Добавлено для z-index */
    z-index: 1000; /* Выше всех элементов */
}


.info-step {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.info-content-wrapper {
    width: 100%;
    max-width: 100%; /* Ограничиваем ширину внутри блока */
    word-wrap: break-word; /* Перенос длинных слов */
}

.info-content {
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.info-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.info-next-btn, .info-close-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: white;
}

.info-next-btn {
    background: linear-gradient(to right, #FFB6C1, #D8BFD8); /* Как у .gradient-btn */
}

.info-next-btn:hover {
    background: linear-gradient(to right, #FFA1B5, #C8A2C8);
}

.info-close-btn {
    background-color: #f5f5f5; /* Как у .footer-btn */
    color: #333;
}

.info-close-btn:hover {
    background-color: #e0e0e0;
}