Privacy Policy

How we collect, use, and protect your personal information.

Overview

Reconnect Africa Tours & Investments (“Reconnect Africa”, “we”, “our”, “us”) values your privacy. This Privacy Policy explains what information we collect, how we use it, and the choices available to you.

Information We Collect

How We Use Information

Sharing of Information

We do not sell personal information. We may share data with trusted service providers (e.g., hosting, analytics) under strict confidentiality obligations, or if required by law.

Data Security

We implement reasonable administrative, technical, and physical safeguards to protect your information. No system is 100% secure; please use discretion when sharing personal data.

Your Choices

Contact

Questions about this policy? Contact us at connect@reconnectafrica.com.

load_dotenv() app = Flask(__name__) app.secret_key = os.environ.get('SECRET_KEY', 'dev-secret-key-change-in-production') if __name__ == '__main__': try: from waitress import serve serve(app, host='0.0.0.0', port=int(os.environ.get('PORT', 5000))) except ImportError: app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 5000)), debug=False)