:root {
  --ink: #13221f;
  --muted: #5e6b67;
  --line: #dce5e1;
  --paper: #ffffff;
  --soft: #f4f8f6;
  --brand: #0a6b57;
  --brand-dark: #08483d;
  --accent: #f5bd24;
  --accent-soft: #fff2c6;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(19, 34, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}

body.logged-in .site-header,
body.logged-in .hero,
body.logged-in .quick-links,
body.logged-in .offers,
body.logged-in .service-band,
body.logged-in .help-grid,
body.logged-in .appointment-section,
body.logged-in .footer {
  display: none;
}

.utility-bar {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  padding: 9px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  background: var(--soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.brand-logo {
  display: block;
  width: 178px;
  max-width: 100%;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--brand), #0c7a63 48%, var(--accent) 49%, var(--accent));
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  padding: 9px 12px;
}

.sign-in-link,
.primary-btn,
.secondary-btn {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.sign-in-link,
.primary-btn {
  color: white;
  background: var(--brand);
}

.sign-in-link {
  padding: 12px 20px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.primary-btn:hover,
.sign-in-link:hover {
  background: var(--brand-dark);
}

.secondary-btn {
  color: var(--brand-dark);
  border: 1px solid var(--brand);
  background: var(--paper);
}

.compact {
  min-height: 40px;
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  min-height: 650px;
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78) 48%, rgba(255,255,255,0.16)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  color: #31433e;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.login-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.panel-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

.panel-heading span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-heading strong {
  font-size: 25px;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form label {
  font-weight: 800;
}

.login-form input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #b9c8c2;
  border-radius: 6px;
  background: white;
}

.form-help {
  color: var(--muted);
  font-size: 13px;
}

.login-error {
  min-height: 21px;
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quick-links a {
  min-height: 74px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.quick-links a:hover {
  background: var(--accent-soft);
}

.dashboard,
.offers,
.service-band,
.help-grid,
.appointment-section {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.dashboard {
  display: block;
  padding: 0;
  background: white;
}

.hidden {
  display: none;
}

.account-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 760px;
  gap: 0;
}

.account-card {
  min-height: 174px;
  padding: 22px;
  border: 1px solid #cfe0d9;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(8, 72, 61, 0.08);
}

.account-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-card strong {
  display: block;
  margin: 12px 0;
  font-size: 30px;
}

.account-card p {
  color: var(--muted);
}

.dashboard > div:first-child,
.dashboard > .compact {
  display: none;
}

.portal-sidebar {
  color: white;
  background: #b70843;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 132px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.portal-brand .brand-logo {
  width: 205px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25));
}

.portal-brand .brand-mark {
  background: linear-gradient(135deg, #0c7a63, #0f9b80 48%, var(--accent) 49%, var(--accent));
  color: white;
}

.portal-brand small {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  text-transform: uppercase;
}

.portal-sidebar button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  color: white;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.36);
  border-bottom: 1px solid rgba(0,0,0,0.14);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.portal-sidebar button:hover {
  background: rgba(255,255,255,0.12);
}

.portal-menu {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.portal-menu-toggle span {
  transition: transform 0.2s ease;
}

.portal-menu.open .portal-menu-toggle span {
  transform: rotate(90deg);
}

.portal-submenu {
  display: none;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.14);
}

.portal-menu.open .portal-submenu {
  display: block;
}

.portal-submenu button {
  min-height: 42px;
  padding-left: 42px;
  color: rgba(255,255,255,0.88);
  border: 0;
  font-size: 14px;
  font-weight: 700;
}

.portal-submenu button.active {
  color: white;
  background: rgba(255,255,255,0.18);
}

.portal-content {
  padding: 44px 28px 32px;
}

.portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.portal-topbar h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
}

.portal-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 72px;
  height: 72px;
  border: 3px solid #f0f0f0;
  border-radius: 50%;
  background: white;
}

.portal-user select {
  min-width: 170px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #cfcfcf;
  background: white;
}

.financial-window {
  margin-top: 26px;
  border: 1px solid #bdebf3;
  border-radius: 4px;
  overflow: hidden;
}

.window-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 22px;
  color: #2f6f86;
  background: #bcebf5;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(340px, 0.98fr);
  gap: 24px;
  padding: 24px 28px 38px;
}

.deposit-card {
  min-height: 300px;
  padding: 34px 36px;
  color: white;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0, 121, 184, 0.97), rgba(0, 98, 164, 0.92)),
    radial-gradient(circle at 92% 78%, rgba(255,255,255,0.18), transparent 22%);
  box-shadow: 0 12px 24px rgba(0, 84, 143, 0.18);
}

.deposit-card h3,
.deposit-card span {
  color: #d8f23c;
}

.deposit-card h3 {
  font-size: 22px;
}

.deposit-card p {
  color: white;
  font-size: 21px;
}

.deposit-card hr {
  border: 0;
  border-top: 2px solid rgba(255,255,255,0.72);
  margin: 20px 0 28px;
}

.deposit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.deposit-row span,
.deposit-row strong {
  display: block;
}

.deposit-row strong {
  margin-top: 8px;
  color: white;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  white-space: nowrap;
}

.deposit-row .status-check {
  font-size: 25px;
}

.quick-transfer {
  min-height: 300px;
  padding: 52px 36px;
  color: white;
  border-radius: 6px;
  background: #262d36;
  box-shadow: 0 12px 24px rgba(16, 22, 30, 0.16);
}

.quick-transfer h3 {
  margin-bottom: 46px;
  text-align: center;
  font-size: 30px;
}

.transfer-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.transfer-fields label {
  display: grid;
  grid-template-columns: 58px 1fr;
}

.transfer-fields label span {
  display: grid;
  place-items: center;
  color: #555;
  background: #f3f3f3;
  border-radius: 4px 0 0 4px;
  font-size: 26px;
}

.transfer-fields input,
.transfer-fields select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  font-size: 19px;
}

.transfer-fields label input {
  border-radius: 0 4px 4px 0;
}

.transfer-fields button {
  min-height: 58px;
  border: 0;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.transfer-btn {
  background: #0878bd;
}

.beneficiary-btn {
  background: #0da247;
}

.transactions {
  margin-top: 66px;
}

.transactions h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 40px);
}

.table-wrap {
  overflow-x: auto;
}

.transactions table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: #777;
  background: white;
}

.transactions th,
.transactions td {
  padding: 16px 14px;
  border: 1px solid #e1e1e1;
  text-align: center;
}

.transactions th {
  color: #999;
  background: #f7f7f7;
  text-transform: uppercase;
}

.portal-page {
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.portal-page > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.portal-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portal-records article {
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.portal-records span,
.portal-records strong {
  display: block;
}

.portal-records span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.portal-records strong {
  font-size: 22px;
}

.portal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portal-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.portal-form input {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #b9c8c2;
  border-radius: 6px;
}

.portal-form button {
  grid-column: 1 / -1;
}

.section-intro {
  max-width: 790px;
  margin-bottom: 28px;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: var(--paper);
}

.offers .section-intro {
  grid-column: 1 / -1;
}

.offer-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.offer-card.highlight {
  background: var(--accent);
}

.offer-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 900;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #0c352e;
  color: white;
}

.service-band .eyebrow,
.service-band p {
  color: #cae5dc;
}

.service-image {
  min-height: 390px;
  border-radius: 8px;
  background: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stats div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--accent);
  font-size: 28px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.help-grid .section-intro {
  grid-column: 1 / -1;
}

.help-grid a {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.help-grid strong,
.help-grid span {
  display: block;
}

.help-grid strong {
  margin-bottom: 12px;
  font-size: 20px;
}

.help-grid span {
  color: var(--muted);
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
  background: white;
}

.appointment-section .section-intro {
  margin-bottom: 0;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.field-pair,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full,
.appointment-form button,
.appointment-success {
  grid-column: 1 / -1;
}

.appointment-form label {
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #b9c8c2;
  border-radius: 6px;
  background: white;
}

.appointment-form textarea {
  resize: vertical;
}

.appointment-success {
  min-height: 22px;
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #d7ebe5;
  background: #071d19;
}

.footer h2 {
  font-size: 18px;
}

.footer p,
.footer a {
  display: block;
  color: #d7ebe5;
  margin: 0 0 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 190px;
  padding: 6px 8px;
  border-radius: 8px;
  background: white;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: linear-gradient(120deg, #eef7f3, #ffffff 58%, #fff3c4);
}

.subpage-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 68px);
}

.subpage-card {
  padding: 28px;
  border: 1px solid #d4e3dd;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.subpage-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.product-main {
  display: grid;
  gap: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-box,
.side-panel,
.rate-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-box {
  padding: 24px;
}

.feature-box p {
  color: var(--muted);
}

.side-panel {
  align-self: start;
  position: sticky;
  top: 116px;
  padding: 24px;
  background: var(--soft);
}

.side-panel ul {
  margin: 16px 0 22px;
  padding-left: 20px;
}

.side-panel li {
  margin-bottom: 10px;
}

.rate-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
}

.rate-table th,
.rate-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.rate-table th {
  color: var(--brand-dark);
  background: var(--soft);
}

.process-band {
  padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background: #0c352e;
  color: white;
}

.process-band .eyebrow,
.process-band p {
  color: #cae5dc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.process-grid div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  font-weight: 900;
}

.active-page {
  color: var(--brand);
}

.admin-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: white;
}

.admin-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 70px) 18px;
}

.admin-shell.wide {
  max-width: 1240px;
}

.admin-card {
  margin-bottom: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(8, 72, 61, 0.08);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.admin-table th {
  color: var(--brand-dark);
  background: var(--soft);
}

.admin-table a {
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 980px) {
  .utility-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .hero,
  .service-band,
  .appointment-section,
  .subpage-hero,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .account-grid,
  .overview-grid,
  .quick-links,
  .admin-grid,
  .offers,
  .help-grid,
  .feature-list,
  .process-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }

  .portal-topbar,
  .portal-user {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1220px) and (min-width: 981px) {
  .account-grid {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .portal-sidebar button {
    padding: 0 18px;
  }

  .overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-inline: 20px;
  }

  .deposit-card,
  .quick-transfer {
    padding-inline: 26px;
  }

  .deposit-row {
    grid-template-columns: 1fr;
  }

  .deposit-row strong {
    white-space: normal;
  }

  .transfer-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .utility-bar {
    gap: 16px;
    font-size: 13px;
  }

  .sign-in-link {
    width: 100%;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.88)),
      url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1000&q=80") center / cover;
  }

  h1 {
    font-size: 40px;
  }

  .login-panel {
    padding: 20px;
  }

  .quick-links,
  .account-grid,
  .overview-grid,
  .portal-records,
  .portal-form,
  .deposit-row,
  .transfer-fields,
  .appointment-form,
  .offers,
  .help-grid,
  .feature-list,
  .process-grid,
  .stats,
  .footer {
    grid-template-columns: 1fr;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }
}
