import streamlit as st def main(): st.markdown("""

Privacy Policy

Learn how we protect your data and privacy while using TrueCheck.

Privacy Policy
""", unsafe_allow_html=True) st.markdown("### Privacy Policy") st.markdown("""

1. Data Collection

We collect news articles you submit for analysis. No personal data is stored unless explicitly provided.

2. Data Usage

Submitted articles are used solely for fake news detection and are not shared with third parties.

3. Data Security

We implement reasonable security measures to protect your data, but no system is completely secure.

4. Cookies

TrueCheck does not use cookies or tracking technologies.

""", unsafe_allow_html=True) if __name__ == "__main__": main()