import tkinter as tk
from tkinter import messagebox

root = tk.Tk()
root.title("Help - Application")
root.geometry("400x350")

def close_help():
    messagebox.showinfo("Exit", "Closing Help Screen.")
    root.destroy()

tk.Label(root, text="Help & Support", font=("Arial", 16, "bold")).pack(pady=10)

help_text = """Welcome to the Application Help Center!

Here you can find information about how to use the app:

1️⃣ Click 'File' to open or save your work.
2️⃣ Use 'Settings' to customize preferences.
3️⃣ Visit 'About' for version info.
4️⃣ For more help, contact support@example.com.

Thank you for using our app!
"""
text_box = tk.Text(root, height=12, width=45, wrap="word")
text_box.pack(padx=15)
text_box.insert(tk.END, help_text)
text_box.config(state="disabled")  # make text read-only

tk.Button(root, text="Close", command=close_help).pack(pady=15)

root.mainloop()