/* ============================================================
   IDROTTSKADESPECIALISTEN — Main Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   1. Custom properties (design tokens)
   ------------------------------------------------------------ */
:root {
  --navy:       #24195d;
  --navy-dark:  #1a1245;
  --navy-light: #2d2275;
  --accent:     #e07b39;
  --accent-hover: #c86825;
  --white:      #ffffff;
  --off-white:  #f7f7f5;
  --grey-light: #eeede9;
  --grey-mid:   #999;
  --text:       #1c1c2e;
  --text-muted: #555566;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 900px;
  --nav-h: 80px;

  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --transition: 0.2s ease;
}

/* ------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ------------------------------------------------------------
   3. Focus styles (accessibility)
   ------------------------------------------------------------ */

/* Default: accent-coloured outline for light backgrounds */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Nav and mobile nav sit on dark navy — use white outline instead */
.nav-list a:focus-visible,
.nav-list button:focus-visible,
.nav-toggle:focus-visible,
.dropdown a:focus-visible,
.nav-mobile a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.90);
  outline-offset: 2px;
}

/* Cards: keep navy outline so it reads against the white card surface */
.card:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Footer / info-strip links sit on very dark backgrounds */
.footer-col a:focus-visible,
.footer-bottom a:focus-visible,
.info-strip a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.80);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   3b. Skip link (accessibility)
   ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  z-index: 9999;
}
.skip-link:focus {
  left: 0;
}

/* ------------------------------------------------------------
   4. Navigation
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--navy);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logotype */
.site-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.2;
}
.site-logo span {
  color: var(--accent);
}

/* Main nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list > li {
  position: relative;
}

.nav-list a,
.nav-list button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-list a:hover,
.nav-list button:hover,
.nav-list a.current,
.nav-list button.current {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Dropdown chevron */
.nav-list button .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-list button[aria-expanded="true"] .chevron {
  transform: rotate(225deg) translateY(-2px);
}

/* Book button in nav */
.nav-book {
  margin-left: 8px;
  padding: 8px 20px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
}
.nav-book:hover {
  background: var(--accent-hover) !important;
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--navy-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}

.nav-list li:last-child .dropdown {
  left: auto;
  right: 0;
}

.dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  border-radius: 0;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.10);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  background: var(--navy);
  overflow-y: auto;
  z-index: 99;
  padding: 16px 0 60px;
}
.nav-mobile.open {
  display: block;
}
.nav-mobile a,
.nav-mobile button {
  display: block;
  width: 100%;
  padding: 15px 28px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  background: none;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: left;
  cursor: pointer;
}
.nav-mobile .sub-group a {
  padding-left: 48px;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
}
.nav-mobile .book-mobile {
  margin: 20px 28px 0;
  width: calc(100% - 56px);
  background: var(--accent) !important;
  border-radius: var(--radius);
  border-top: none !important;
  text-align: center;
  font-weight: 600 !important;
}

/* ------------------------------------------------------------
   5. Page hero (homepage)
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/bg1.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--white);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,13,60,0.55) 0%,
    rgba(20,13,60,0.45) 60%,
    rgba(20,13,60,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: heroBob 2s ease-in-out infinite;
}

@keyframes heroBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ------------------------------------------------------------
   6. Page banner (sub-pages — replaces hero)
   ------------------------------------------------------------ */
.page-banner {
  margin-top: var(--nav-h);
  background: var(--navy);
  padding: 52px 40px;
  text-align: center;
  color: var(--white);
}
.page-banner h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.page-banner .breadcrumb {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}
.page-banner .breadcrumb a {
  color: rgba(255,255,255,0.60);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------
   7. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* ------------------------------------------------------------
   8. Layout containers & sections
   ------------------------------------------------------------ */
main {
  flex: 1;
}

.section {
  padding: 72px 40px;
}

.section-alt {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section headings */
.section-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 560px;
}

.section-navy .section-sub {
  color: rgba(255,255,255,0.70);
}

/* ------------------------------------------------------------
   9. Intro / text content
   ------------------------------------------------------------ */
.prose p {
  margin-bottom: 1.1em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 1.8em 0 0.6em;
  color: var(--navy);
}
.prose h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 1.4em 0 0.5em;
  color: var(--navy);
}
.prose ul,
.prose ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li {
  margin-bottom: 0.4em;
  line-height: 1.7;
}
.prose a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------
   10a. Homepage intro layout
   ------------------------------------------------------------ */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.intro-text .section-heading {
  margin-bottom: 16px;
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.method-tags span {
  display: inline-block;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: 20px;
}

.intro-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.credential {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--grey-light);
}

.credential:last-child {
  border-bottom: none;
}

.credential-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.credential-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.credential-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 700px) {
  .intro-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ------------------------------------------------------------
   10. Treatment cards grid
   ------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--navy-light);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.card-arrow {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-arrow::after {
  content: '→';
}

/* ------------------------------------------------------------
   11. How a visit works — steps
   ------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.step {
  display: flex;
  gap: 18px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.step-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.step-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   12. CTA banner
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 72px 40px;
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 17px;
  opacity: 0.80;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------
   13. Info strip (phone / email / address)
   ------------------------------------------------------------ */
.info-strip {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.80);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 14px;
}

.info-strip a {
  color: rgba(255,255,255,0.80);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.info-strip a:hover {
  color: var(--white);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item svg {
  opacity: 0.60;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------ */
.site-footer {
  background: #0f0c24;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .site-logo {
  font-size: 16px;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.60);
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ------------------------------------------------------------
   15. Form
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 480px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #ccc;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(36,25,93,0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-submit {
  margin-top: 8px;
}

/* Checkbox consent */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  max-width: 480px;
}

.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

/* Formspree inline field errors */
[data-fs-error] {
  display: block;
  font-size: 13px;
  color: #721c24;
  margin-top: 4px;
}

[data-fs-error]:empty {
  display: none;
}

/* Success / error messages */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  margin-bottom: 24px;
  display: none;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ------------------------------------------------------------
   16. Page-specific: hitta-hit / map
   ------------------------------------------------------------ */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  display: inline-block;
}
.map-wrap img {
  display: block;
}

/* ------------------------------------------------------------
   17. Page-specific: om-oss staff
   ------------------------------------------------------------ */
.staff-profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}

.staff-profile img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  object-position: top;
}

.staff-profile-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.staff-profile-body .staff-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
  display: block;
}

.staff-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 0 8px;
}

@media (max-width: 700px) {
  .staff-profile {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .staff-profile img {
    max-width: 240px;
  }
}

/* ------------------------------------------------------------
   18. Page-specific: priser table
   ------------------------------------------------------------ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
}

.price-table th {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--off-white);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

/* ------------------------------------------------------------
   19. Utility classes
   ------------------------------------------------------------ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.highlight-box {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   20. Responsive
   ------------------------------------------------------------ */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  :root {
    --nav-h: 64px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-list {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 52px 20px;
  }

  .page-banner {
    padding: 40px 20px;
  }

  .info-strip {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 52px 20px;
  }

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

  .hero-content h1 {
    font-size: 28px;
  }

}

@media (max-width: 420px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    max-width: 100%;
  }
}
