import streamlit as st def main(): # Custom CSS for Privacy Policy page st.markdown(""" """, unsafe_allow_html=True) # Header st.markdown("""

🛡️ TruthCheck

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

🔒 Privacy Policy

At TruthCheck, we are committed to protecting your privacy. This Privacy Policy outlines how we collect, use, and safeguard your data.

📊 Data Collection

We collect data you provide, such as news articles submitted for analysis and optional contact form submissions. We may also collect usage data to improve our services.

🔐 Data Usage

Your data is used solely to provide fake news detection services and respond to inquiries. We do not sell or share your personal information with third parties.

🛡️ Data Security

We implement industry-standard security measures to protect your data from unauthorized access or disclosure.

🍪 Cookies

TruthCheck may use cookies to enhance user experience. You can disable cookies in your browser settings, but this may affect functionality.

📩 Contact Us

If you have questions about our Privacy Policy, please contact us at support@truthcheck.ai.

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