/* Заголовок секции */
.toggle-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 5px;
}

/* Кнопка */
.toggle-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid #0affea;
    color: #0affea;
    border-radius: 5px;
    cursor: pointer;
    text-shadow: 0 0 6px #0affea;
    transition: 0.3s;
}

.toggle-btn:hover {
    color: #ff00ff;
    border-color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* Скрытый блок */
.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Активный (показать) */
.toggle-content.active {
    max-height: 500px;
}

/* Чтобы секции выглядели аккуратно */
.toggle-content ul {
    margin: 5px 0 15px 20px;
}