:root {
  --metabol-bg-canvas: #fbfbf9;
  --metabol-bg-surface: #ffffff;
  --metabol-tint-soft: #f2f6f4;
  --metabol-brand-emerald: #2a6f54;
  --metabol-brand-emerald-hover: #1e523d;
  --metabol-brand-accent: #e89b4b;
  --metabol-text-charcoal: #1f2a25;
  --metabol-text-muted: #53645c;
  --metabol-border-light: #e3ebe7;
  
  --metabol-font-title: 'Montserrat', sans-serif;
  --metabol-font-body: 'Inter', sans-serif;
  
  --metabol-radius-soft: 16px;
  --metabol-radius-pill: 999px;
  
  --metabol-shadow-raised: 0 10px 30px rgba(42, 111, 84, 0.06), 0 1px 3px rgba(42, 111, 84, 0.02);
  --metabol-shadow-deep: 0 20px 40px rgba(42, 111, 84, 0.12);
  
  --metabol-header-height: 72px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--metabol-font-body);
  color: var(--metabol-text-charcoal);
  background-color: var(--metabol-bg-canvas);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--metabol-font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--metabol-text-charcoal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Scroll-driven Progress Bar (Header CSS only) */
@keyframes eq-progress-grow {
  to { width: 100%; }
}
.eq-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--metabol-brand-emerald);
  width: 0;
  z-index: 10001;
  animation: eq-progress-grow linear;
  animation-timeline: scroll();
}

/* Scroll-driven Reveal Animation */
@keyframes eq-reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.eq-reveal-section {
  animation: eq-reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 25%;
}

/* Layout Utilities styling */
.eq-canvas-layout {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Header & Navigation */
.eq-navigation-bar {
  background-color: var(--metabol-bg-surface);
  border-bottom: 1px solid var(--metabol-border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--metabol-header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}

.eq-navigation-bar:focus-within {
  box-shadow: 0 4px 20px rgba(42, 111, 84, 0.08);
}

.eq-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.eq-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--metabol-font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--metabol-brand-emerald);
}

.eq-logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--metabol-brand-emerald);
}

.eq-nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.eq-nav-item-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--metabol-text-muted);
  position: relative;
  padding: 8px 0;
}

.eq-nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--metabol-brand-emerald);
  transition: width 0.25s ease;
}

.eq-nav-item-link:hover {
  color: var(--metabol-brand-emerald);
}

.eq-nav-item-link:hover::after {
  width: 100%;
}

/* CSS-Only Hamburger Menu */
.eq-menu-trigger {
  display: none;
}

.eq-hamburger-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.eq-hamburger-label span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--metabol-text-charcoal);
  transition: all 0.3s ease;
}

/* Announcement Bar */
.eq-announcement-header {
  background-color: var(--metabol-brand-emerald);
  color: var(--metabol-bg-surface);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.eq-announcement-header a {
  text-decoration: underline;
  margin-left: 6px;
  color: var(--metabol-brand-accent);
}

/* Hero Split Screen */
.eq-hero-split-dock {
  display: flex;
  min-height: calc(85vh - var(--metabol-header-height));
  border-bottom: 1px solid var(--metabol-border-light);
}

.eq-hero-content-column {
  flex: 0 0 55%;
  background-color: var(--metabol-tint-soft);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eq-hero-image-column {
  flex: 0 0 45%;
  position: relative;
}

.eq-hero-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq-hero-tagline {
  color: var(--metabol-brand-emerald);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: block;
}

.eq-hero-headline {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--metabol-text-charcoal);
  line-height: 1.15;
}

.eq-hero-paragraph {
  font-size: 1.1rem;
  color: var(--metabol-text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

/* Button Component */
.eq-action-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--metabol-brand-emerald);
  color: var(--metabol-bg-surface);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--metabol-radius-soft);
  box-shadow: var(--metabol-shadow-raised);
  transform: translateY(0);
  width: fit-content;
}

.eq-action-anchor:hover {
  background-color: var(--metabol-brand-emerald-hover);
  transform: translateY(-2px);
  box-shadow: var(--metabol-shadow-deep);
}

/* Content Journalistic Row */
.eq-journalistic-photo-bar {
  height: 45vh;
  width: 100%;
}

.eq-journalistic-photo-bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq-journalistic-trio {
  padding: 80px 0;
  background-color: var(--metabol-bg-surface);
}

.eq-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.eq-journal-column {
  border-top: 3px solid var(--metabol-brand-emerald);
  padding-top: 24px;
}

.eq-journal-col-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.eq-journal-col-desc {
  color: var(--metabol-text-muted);
  font-size: 0.95rem;
}

/* Masonry Features Section */
.eq-masonry-features-deck {
  padding: 100px 0;
  background-color: var(--metabol-bg-canvas);
}

.eq-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.eq-section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.eq-section-subtitle {
  color: var(--metabol-text-muted);
}

.eq-masonry-wrap {
  columns: 3;
  column-gap: 24px;
}

.eq-masonry-item {
  background-color: var(--metabol-bg-surface);
  border-radius: var(--metabol-radius-soft);
  padding: 32px;
  margin-bottom: 24px;
  break-inside: avoid;
  box-shadow: var(--metabol-shadow-raised);
  border: 1px solid var(--metabol-border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eq-masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--metabol-shadow-deep);
}

.eq-masonry-icon-holder {
  width: 48px;
  height: 48px;
  background-color: var(--metabol-tint-soft);
  border-radius: var(--metabol-radius-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.eq-masonry-icon-holder svg {
  width: 24px;
  height: 24px;
  fill: var(--metabol-brand-emerald);
}

.eq-masonry-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.eq-masonry-text {
  color: var(--metabol-text-muted);
  font-size: 0.9rem;
}

/* How It Works Horizontal Track */
.eq-stepper-landscape {
  padding: 100px 0;
  background-color: var(--metabol-bg-surface);
  border-top: 1px solid var(--metabol-border-light);
}

.eq-stepper-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.eq-stepper-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed var(--metabol-border-light);
  z-index: 1;
}

.eq-stepper-node {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.eq-stepper-numeric-cap {
  width: 70px;
  height: 70px;
  border-radius: var(--metabol-radius-pill);
  background-color: var(--metabol-bg-surface);
  border: 2px solid var(--metabol-brand-emerald);
  color: var(--metabol-brand-emerald);
  font-family: var(--metabol-font-title);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.eq-stepper-node.is-focused .eq-stepper-numeric-cap {
  background-color: var(--metabol-brand-emerald);
  color: var(--metabol-bg-surface);
  box-shadow: 0 0 20px rgba(42, 111, 84, 0.4);
}

.eq-stepper-heading {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.eq-stepper-description {
  color: var(--metabol-text-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Accent CTA Strip */
.eq-cta-belt {
  background: var(--metabol-brand-emerald);
  color: var(--metabol-bg-surface);
  padding: 80px 0;
  text-align: center;
}

.eq-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.eq-cta-title {
  color: var(--metabol-bg-surface);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.eq-cta-descr {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.eq-accent-action-btn {
  background-color: var(--metabol-brand-accent);
  color: var(--metabol-bg-surface);
  box-shadow: none;
}

.eq-accent-action-btn:hover {
  background-color: #d88a38;
}

/* Footer Section */
.eq-portal-footer {
  background-color: var(--metabol-text-charcoal);
  color: #d1dad6;
  padding: 80px 0 40px;
  margin-top: auto;
}

.eq-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.eq-footer-logo-panel .eq-logo-link {
  color: var(--metabol-bg-surface);
  margin-bottom: 20px;
}

.eq-footer-logo-panel .eq-logo-icon {
  fill: var(--metabol-bg-surface);
}

.eq-footer-pitch {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}

.eq-footer-nav-title {
  color: var(--metabol-bg-surface);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--metabol-font-title);
}

.eq-footer-links-list {
  list-style: none;
}

.eq-footer-links-list li {
  margin-bottom: 12px;
}

.eq-footer-link {
  font-size: 0.9rem;
  opacity: 0.8;
}

.eq-footer-link:hover {
  color: var(--metabol-bg-surface);
  opacity: 1;
}

.eq-footer-disclaimer-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.eq-footer-disclaimer-text {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.eq-footer-copyright {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Cookie Consent Tray */
.eq-cookie-tray {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--metabol-bg-surface);
  border-top: 1px solid var(--metabol-border-light);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

.eq-cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.eq-cookie-text {
  font-size: 0.9rem;
  color: var(--metabol-text-muted);
}

.eq-cookie-buttons {
  display: flex;
  gap: 12px;
}

.eq-cookie-btn {
  padding: 10px 20px;
  border-radius: var(--metabol-radius-soft);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.eq-cookie-accept {
  background-color: var(--metabol-brand-emerald);
  color: var(--metabol-bg-surface);
}

.eq-cookie-accept:hover {
  background-color: var(--metabol-brand-emerald-hover);
}

.eq-cookie-decline {
  background-color: var(--metabol-tint-soft);
  color: var(--metabol-text-muted);
}

.eq-cookie-decline:hover {
  background-color: var(--metabol-border-light);
}

/* Expert / Biography Page Styles */
.eq-biography-split {
  display: flex;
  background-color: var(--metabol-bg-surface);
  border-bottom: 1px solid var(--metabol-border-light);
}

.eq-bio-media-slot {
  flex: 0 0 50%;
}

.eq-bio-media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 550px;
}

.eq-bio-text-slot {
  flex: 0 0 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eq-bio-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.eq-bio-paragraph {
  color: var(--metabol-text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Horizontal Statistics Bar */
.eq-stats-bar {
  padding: 60px 0;
  background-color: var(--metabol-tint-soft);
  border-bottom: 1px solid var(--metabol-border-light);
}

.eq-stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.eq-stat-node {
  text-align: center;
}

.eq-stat-value {
  font-family: var(--metabol-font-title);
  color: var(--metabol-brand-emerald);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.eq-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--metabol-text-charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Accordion Component */
.eq-pedagogy-accordion {
  padding: 100px 0;
  background-color: var(--metabol-bg-surface);
}

.eq-accordion-group {
  max-width: 800px;
  margin: 0 auto;
}

.eq-accordion-block {
  border: 1px solid var(--metabol-border-light);
  border-radius: var(--metabol-radius-soft);
  margin-bottom: 16px;
  overflow: hidden;
}

.eq-accordion-header {
  padding: 24px;
  background-color: var(--metabol-bg-canvas);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s ease;
}

.eq-accordion-header:hover {
  background-color: var(--metabol-tint-soft);
}

.eq-accordion-header-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.eq-accordion-indicator {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--metabol-brand-emerald);
  line-height: 1;
}

.eq-accordion-panel {
  padding: 24px;
  border-top: 1px solid var(--metabol-border-light);
  background-color: var(--metabol-bg-surface);
}

.eq-accordion-panel p {
  color: var(--metabol-text-muted);
  font-size: 0.95rem;
}

/* Booking Layout (reserve.html) */
.eq-booking-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.eq-booking-info-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.eq-outline-panel {
  background-color: var(--metabol-bg-surface);
  border-radius: var(--metabol-radius-soft);
  padding: 30px;
  border: 1px solid var(--metabol-border-light);
  box-shadow: var(--metabol-shadow-raised);
}

.eq-outline-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.eq-outline-icon {
  width: 32px;
  height: 32px;
  fill: var(--metabol-brand-emerald);
}

.eq-outline-title {
  font-size: 1.25rem;
}

.eq-bullet-checklist {
  list-style: none;
  padding-left: 0;
}

.eq-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--metabol-text-muted);
}

.eq-bullet-marker {
  width: 18px;
  height: 18px;
  border-radius: var(--metabol-radius-pill);
  background-color: var(--metabol-brand-emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--metabol-bg-surface);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Interactive Form Box */
.eq-booking-form-box {
  background-color: var(--metabol-bg-surface);
  border-radius: var(--metabol-radius-soft);
  padding: 40px;
  box-shadow: var(--metabol-shadow-deep);
  border: 1px solid var(--metabol-border-light);
}

.eq-form-headline {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.eq-form-sub-text {
  color: var(--metabol-text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.eq-form-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eq-input-cluster {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eq-input-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--metabol-text-charcoal);
}

.eq-text-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--metabol-radius-soft);
  border: 1px solid var(--metabol-border-light);
  font-family: var(--metabol-font-body);
  font-size: 0.95rem;
  background-color: var(--metabol-bg-canvas);
  outline: none;
  transition: all 0.25s ease;
}

.eq-text-input:focus {
  border-color: var(--metabol-brand-emerald);
  background-color: var(--metabol-bg-surface);
  box-shadow: 0 0 0 3px rgba(42, 111, 84, 0.15);
}

.eq-privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--metabol-text-muted);
  cursor: pointer;
  line-height: 1.4;
}

.eq-privacy-checkbox-label input {
  margin-top: 3px;
}

.eq-form-submit-row {
  margin-top: 10px;
}

.eq-form-submit-row button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.eq-contact-mailto-pane {
  margin-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--metabol-text-muted);
}

.eq-contact-mailto-pane a {
  font-weight: 700;
  color: var(--metabol-brand-emerald);
  text-decoration: underline;
}

/* FAQ Accordion block (at bottom of reserve) */
.eq-faq-wrapper {
  padding: 80px 0;
  border-top: 1px solid var(--metabol-border-light);
}

/* Legal text layout */
.eq-legal-canvas {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.eq-legal-headline {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.eq-legal-block {
  margin-bottom: 40px;
}

.eq-legal-sub-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.eq-legal-paragraph {
  color: var(--metabol-text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Thank You screen template styling */
.eq-thank-you-view {
  display: flex;
  align-items: center;
  background-color: var(--metabol-bg-surface);
  border-bottom: 1px solid var(--metabol-border-light);
  min-height: 60vh;
}

.eq-thank-media {
  flex: 0 0 50%;
}

.eq-thank-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

.eq-thank-body {
  flex: 0 0 50%;
  padding: 80px;
}

.eq-thank-heading {
  font-size: 3rem;
  margin-bottom: 20px;
}

.eq-thank-intro {
  color: var(--metabol-text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .eq-hero-split-dock {
    flex-direction: column;
  }
  .eq-hero-content-column {
    flex: 0 0 100%;
    padding: 60px 24px;
    text-align: center;
    align-items: center;
  }
  .eq-hero-paragraph {
    margin-right: auto;
    margin-left: auto;
  }
  .eq-hero-image-column {
    flex: 0 0 100%;
    height: 400px;
  }
  .eq-journal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .eq-masonry-wrap {
    columns: 2;
  }
  .eq-biography-split {
    flex-direction: column;
  }
  .eq-bio-media-slot {
    flex: 0 0 100%;
    height: 350px;
  }
  .eq-bio-media-slot img {
    min-height: auto;
  }
  .eq-bio-text-slot {
    flex: 0 0 100%;
    padding: 40px 24px;
  }
  .eq-booking-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .eq-thank-you-view {
    flex-direction: column;
  }
  .eq-thank-media {
    flex: 0 0 100%;
    width: 100%;
    height: 300px;
  }
  .eq-thank-media img {
    min-height: auto;
  }
  .eq-thank-body {
    flex: 0 0 100%;
    padding: 40px 24px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .eq-hamburger-label {
    display: flex;
  }
  .eq-nav-menu {
    position: fixed;
    top: var(--metabol-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--metabol-bg-surface);
    flex-direction: column;
    padding-top: 40px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .eq-menu-trigger:checked ~ .eq-nav-menu {
    transform: translateY(0);
  }
  .eq-menu-trigger:checked ~ .eq-hamburger-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .eq-menu-trigger:checked ~ .eq-hamburger-label span:nth-child(2) {
    opacity: 0;
  }
  .eq-menu-trigger:checked ~ .eq-hamburger-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .eq-hero-headline {
    font-size: 2.25rem;
  }
  .eq-masonry-wrap {
    columns: 1;
  }
  .eq-stepper-track {
    flex-direction: column;
    gap: 40px;
  }
  .eq-stepper-track::before {
    display: none;
  }
  .eq-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .eq-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}