diff --git a/app/assets/stylesheets/pages/settings.scss b/app/assets/stylesheets/pages/settings.scss
index 9aaae8dfed1b3266d54db002a0c55d1d0013737c..ab7d67e3c83e0213f147fc772e01fa68190386ad 100644
--- a/app/assets/stylesheets/pages/settings.scss
+++ b/app/assets/stylesheets/pages/settings.scss
@@ -42,7 +42,7 @@
 
 .settings-section,
 .settings-section-no-bottom ~ .settings-section {
-  padding-top: 0 !important;
+  padding-top: 0;
 }
 
 // Fix for sticky header when there is no search bar.
@@ -50,12 +50,9 @@
   padding-top: $gl-spacing-scale-3;
 }
 
-.settings-section ~ .settings-section {
-  padding-top: $gl-spacing-scale-6;
-}
-
 .settings-section:not(.settings-section-no-bottom) ~ .settings-section {
   @include gl-border-t;
+  padding-top: $gl-spacing-scale-6;
 }
 
 .settings-section-no-bottom::after {
diff --git a/app/views/admin/groups/_form.html.haml b/app/views/admin/groups/_form.html.haml
index 5af731a4cab6906d3ced3d53ee2e056826955439..3493fbee8b7a8702aedb3a16b0e87d3718feef5d 100644
--- a/app/views/admin/groups/_form.html.haml
+++ b/app/views/admin/groups/_form.html.haml
@@ -1,7 +1,7 @@
 = gitlab_ui_form_for [:admin, @group] do |f|
   = form_errors(@group)
-  = render ::Layouts::HorizontalSectionComponent.new(options: { class: 'gl-pb-5 gl-mb-6' }) do |c|
-    - c.with_title { _('Naming, visibility') }
+
+  = render ::Layouts::SettingsSectionComponent.new(_('Naming, visibility')) do |c|
     - c.with_description do
       = _('Update your group name, description, avatar, and visibility.')
       = link_to _('Learn more about groups.'), help_page_path('user/group/index.md')
@@ -13,8 +13,7 @@
         = render 'shared/choose_avatar_button', f: f
       = render 'shared/visibility_level', f: f, visibility_level: visibility_level, can_change_visibility_level: can_change_group_visibility_level?(@group), form_model: @group, with_label: false
 
-  = render ::Layouts::HorizontalSectionComponent.new(options: { class: 'gl-pb-3 gl-mb-6' }) do |c|
-    - c.with_title { _('Permissions and group features') }
+  = render ::Layouts::SettingsSectionComponent.new(_('Permissions and group features')) do |c|
     - c.with_description do
       = _('Configure advanced permissions, Large File Storage, two-factor authentication, and CI/CD settings.')
     - c.with_body do
@@ -25,8 +24,7 @@
       = render 'groups/group_admin_settings', f: f
       = render_if_exists 'namespaces/shared_runners_minutes_settings', group: @group, form: f
 
-  = render ::Layouts::HorizontalSectionComponent.new(border: false, options: { class: 'gl-pb-3' }) do |c|
-    - c.with_title { _('Admin notes') }
+  = render ::Layouts::SettingsSectionComponent.new(_('Admin notes')) do |c|
     - c.with_body do
       = render 'shared/admin/admin_note_form', f: f
 
@@ -34,13 +32,13 @@
     = render Pajamas::AlertComponent.new(dismissible: false) do |c|
       - c.with_body do
         = render 'shared/group_tips'
-    .gl-mt-5
+    .settings-sticky-footer.gl-flex.gl-gap-3
       = f.submit _('Create group'), pajamas_button: true
       = render Pajamas::ButtonComponent.new(href: admin_groups_path) do
         = _('Cancel')
 
   - else
-    .gl-mt-5
+    .settings-sticky-footer.gl-flex.gl-gap-3
       = f.submit _('Save changes'), data: { testid: 'save-changes-button' }, pajamas_button: true
       = render Pajamas::ButtonComponent.new(href: admin_group_path(@group)) do
         = _('Cancel')
diff --git a/app/views/admin/groups/edit.html.haml b/app/views/admin/groups/edit.html.haml
index 8263239c8a2e5419b77522120cc3298631ecdf10..a8d73b82425f8dc5a22fc02771151623fd3bcc10 100644
--- a/app/views/admin/groups/edit.html.haml
+++ b/app/views/admin/groups/edit.html.haml
@@ -3,6 +3,5 @@
 - breadcrumb_title _("Edit")
 - page_title _("Edit"), @group.name, _("Groups")
 
-%h1.page-title.gl-text-size-h-display= _('Edit group: %{group_name}') % { group_name: @group.name }
-%hr
+= render ::Layouts::PageHeadingComponent.new(_('Edit group: %{group_name}') % { group_name: @group.name })
 = render 'form', visibility_level: @group.visibility_level