How-To search for heading or command flags in man pages
The man command has a shortcut / that allows you to search for a pattern, and the pattern is a Basic Regular Expression (BRE). This means to search for a section heading you can search for the pattern ^<pattern> and to search for command flags you first add an optional start of whitespace characters ^[[:space:]]+<pattern>.