It is called Cascading Style Sheets (CSS) for a reason ..
use the specificity rules of CSS to target each section..
ie..
#section1 a{color:red}
#section2 a{color:blue}
this will make all links inside an element with id section1
be red, and all links inside an element with id section2
be blue..