diff --git a/app/views/form/page.html.erb b/app/views/form/page.html.erb
index e7fe0c7e2..505924fbe 100644
--- a/app/views/form/page.html.erb
+++ b/app/views/form/page.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, "#{subsection} – #{t('service_name')} - GOV.UK" %>
+<% content_for :title, browser_title(subsection) %>
<% content_for :before_content do %>
<%= govuk_back_link(
diff --git a/app/views/organisations/show.html.erb b/app/views/organisations/show.html.erb
index d9cac8d2a..3748e6cc0 100644
--- a/app/views/organisations/show.html.erb
+++ b/app/views/organisations/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, "Your organisation (Details) – #{t('service_name')} - GOV.UK" %>
+<% content_for :title, browser_title("Your organisation (Details)") %>
<% content_for :tab_title do %>
<%= "Details" %>
<% end %>
diff --git a/app/views/organisations/users.html.erb b/app/views/organisations/users.html.erb
index dbf53b484..653cfc569 100644
--- a/app/views/organisations/users.html.erb
+++ b/app/views/organisations/users.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, "Your organisation (Users) – #{t('service_name')} - GOV.UK" %>
+<% content_for :title, browser_title("Your organisation (Users)") %>
<% content_for :tab_title do %>
<%= "Users" %>
<% end %>
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index e90d35cdc..032938628 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -1,4 +1,4 @@
-<% content_for :title, "Your account – #{t('service_name')} - GOV.UK" %>
+<% content_for :title, browser_title("Your account") %>