import re

with open(r'd:\DN\final_page_project\shared-hosting.html', 'r', encoding='utf-8') as f:
    html = f.read()

pricing_match = re.search(r'(<section id="pricing".*?</section>)', html, re.DOTALL)
if pricing_match:
    print('Pricing section found. Ends at:', pricing_match.end())
    after_pricing = html[pricing_match.end():].strip()
    print('First 200 chars after pricing:')
    print(after_pricing[:200])
else:
    print('Pricing section NOT found.')
