Validates if a month is valid (1-12)
Returns true if the month is valid, false otherwise
static bool isValidMonth(int month) { return month >= 1 && month <= 12; }