How exactly did you decide to eliminate the mod 4 and mod 6 equations? The mod 4 equation implies the mod 2 equation, and the mod 6 equation implies the mod 3 equation, so you can eliminate the mod 2 and mod 3 equation. The problem starts off telling you that x = n (mod n+1) for n = 1, 2, 3, 4, 5. This is equivalent to saying that x = n (mod n+1) for n = 3, 4, 5 [i.e. you can get rid of the mod 2 and mod 3 equations, like I've already said]. But this isn't equivalent to x = n (mod n+1) for n = 1, 2, 4. For example, x=29 satisfies these three equations, but doesn't satisfy the original equations you were given.
Now it turns out that when you include the equation x = 0 (mod 7), THEN
x = n (mod n+1) for n = 1, 2, 3, 4, 5; x = 0 (mod 7)
x = n (mod n+1) for n = 3, 4, 5; x = 0 (mod 7)
x = n (mod n+1) for n = 1, 2, 4; x = 0 (mod 7)
become equivalent. Did you take the mod 7 equation into account when coming up with your system, or was it just luck?
Anyways, the CRT doesn't tell you how to find x (the proof does), it just tells you x exists and is unique (modulo something) if the system satisfies certain conditions. Don't worry about the CRT, just think of how you might find a number which satisfies
x = n (mod n+1) for n = 3, 4, 5; x = 0 (mod 7)
or, if you have a good reason for why
x = n (mod n+1) for n = 1, 2, 4; x = 0 (mod 7)
is equivalent to
x = n (mod n+1) for n = 1, 2, 3, 4, 5; x = 0 (mod 7)
then think about how you'd find a number satisfying:
x = n (mod n+1) for n = 1, 2, 4; x = 0 (mod 7)
It's a lot easier, actually, when you think of the congruence x = n (mod n+1) to be x = -1 (mod n+1). First, find a number x' satisfying the congruences other than x = 0 (mod 7). If this number itself is not a multiple of 7, you need to keep adding multiples of a certain number N to x' until you have x' + kN is a multiple of 7. That sounds a little vague, hope it was clear enough though.