We have a list of some Persons:
case class Person(name: String, age: Int, gender: String)
val people: List[Person]
Filter people based on multiple conditions using a lambda function to receive a list with "Female" gender only and the age over 25. Save the result to the filteredPeople value.