diff --git a/kjvstudy_org/templates/error.html b/kjvstudy_org/templates/error.html
index 548150b..358a161 100644
--- a/kjvstudy_org/templates/error.html
+++ b/kjvstudy_org/templates/error.html
@@ -1,91 +1,405 @@
{% extends "base.html" %}
-{% block title %}Page Not Found - Authorized King James Version (KJV) Bible Study{% endblock %}
-{% block description %}The requested KJV Bible page could not be found. Browse the complete Authorized King James Version Bible with study tools and commentary.{% endblock %}
-{% block keywords %}KJV Bible, Authorized King James Version, Bible study, page not found, KJV online{% endblock %}
+{% block title %}
+ {% if status_code == 404 %}
+ Page Not Found - KJV Study
+ {% else %}
+ Error {{ status_code }} - KJV Study
+ {% endif %}
+{% endblock %}
+
+{% block description %}The requested page could not be found. Use our search to find Bible passages, topics, study guides, and more.{% endblock %}
+
+{% block head %}
+
+{% endblock %}
{% block content %}
-
-
- {% if status_code == 404 %}
- 📖❓
- {% else %}
- ⚠️
- {% endif %}
-
-
-
- {% if status_code == 404 %}
- KJV Bible Page Not Found
- {% else %}
- Error {{ status_code }} - KJV Study
- {% endif %}
-
-
-
- {% if status_code == 404 %}
- The Authorized King James Version (KJV) Bible passage or page you're looking for could not be found.
- The reference might be incorrect or the page may have been moved.
- {% else %}
- {{ detail or "An unexpected error occurred while accessing the KJV Bible study platform." }}
- {% endif %}
-
-
-
-
+
+ {% if status_code == 404 %}
+
-
-
- 📖 Popular KJV Bible Passages
-
-
-
+
+ What man of you, having an hundred sheep, if he lose one of them, doth not leave the ninety and nine in the wilderness, and go after that which is lost, until he find it?
+
+ Luke 15:4
+
+
-
-
- "Trust in the LORD with all thine heart; and lean not unto thine own understanding."
-
- Proverbs 3:5
-
-
+
+
+
+
+
+ Search the Scriptures
+
+
+ Try: John 3:16, faith, Psalm 23, or salvation
+
+
+
+
+ Continue Your Study
+
+
+
+
+
+ {% else %}
+ {# Other error codes #}
+
+
+
+ {{ detail or "An unexpected error occurred. Please try again or return to the homepage." }}
+
+
+
+ {% endif %}
+
{% endblock %}
{% block scripts %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}