Validates if a quarter number is valid (1-4)
Returns true if the quarter is valid, false otherwise
static bool isValidQuarter(int quarter) { return quarter >= 1 && quarter <= 4; }