📝 **Task:** Write `is_palindrome(s)` that returns `True` if string `s` reads the same forwards and backwards (case-insensitive), else `False`. Print the result for `'Racecar'`.
📋 Implement the function above. Test cases run automatically.
💡 **Hint:** Re-read the theory if you get stuck — the pattern is right there.