Introduction
SASS lets you write styles in a simpler way with variables and nesting. But browsers only understand CSS, so you need to turn your SASS code into CSS first.
When you want to use variables for colors or fonts in your styles.
When you want to organize CSS rules inside each other for easier reading.
When you want to use mixins or functions to reuse style code.
When you want to write cleaner and shorter style code that browsers can understand after conversion.