I'm working on a problem set for my algorithms course and we're asked to solve the recurrence relation
$$ T(n) = 7T(n/2) + n^2 + \log(n). $$
Since this recurrence relation is not of the form $T(n) = aT(n/b) + n^d$ and therefore the master theorem does not apply, I'm confused about where to begin in solving it.
Could anyone give me an idea of what method(s) might be useful in solving this? I'm flipping through our textbook and don't see anything on solving general recurrence relations where master's theorem is unusable.