:root {
  --flex-accent-bright: #ff4757;
  --flex-accent-deep: #ff6b81;
  --flex-bg-vibrant: linear-gradient(135deg, #1e3799, #0c2461);
  --flex-surface-creamy: #f8f9fa;
  --flex-dark-charcoal: #0c1c30;
  --flex-pure-white: #ffffff;
  --flex-text-muted: #57606f;
  --flex-light-tint: rgba(255, 71, 87, 0.1);
  
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  --flex-radius-soft: 16px;
  --flex-radius-circle: 999px;
  --flex-shadow-raised: 0 10px 30px rgba(12, 36, 97, 0.15);
  --flex-shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --flex-border-fine: 1px solid rgba(12, 36, 97, 0.1);
  
  --space-compact: 6vh;
  --space-normal: 10vh;
  --space-spacious: 16vh;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--flex-dark-charcoal);
  background-color: var(--flex-pure-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress indicator */
.scroll-tracker-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--flex-accent-bright);
  z-index: 10001;
  width: 0;
  animation: fill-scroll-bar linear;
  animation-timeline: scroll();
}

@keyframes fill-scroll-bar {
  to { width: 100%; }
}

/* Scroll reveal class using view() */
.on-scroll-reveal {
  animation: reveal-fade-in linear both;
  animation-timeline: view();
  animation-range: entry 10% ease-in exit 40%;
}

@keyframes reveal-fade-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header & Navigation Styling (Preset C: Accent background, white text) */
.vitality-header-wrapper {
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: var(--flex-shadow-raised);
}

.vitality-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.vitality-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--flex-pure-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vitality-brand-logo svg {
  fill: var(--flex-pure-white);
}

.vitality-nav-menu-toggle {
  display: none;
}

.vitality-nav-hamburger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.vitality-nav-hamburger-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--flex-pure-white);
  transition: 0.3s;
}

.vitality-nav-link-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.vitality-nav-link-list a {
  color: var(--flex-pure-white);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: opacity 0.3s;
}

.vitality-nav-link-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--flex-pure-white);
  transition: width 0.3s;
}

.vitality-nav-link-list a:hover::after {
  width: 100%;
}

/* Responsive Hamburger Menu */
@media (max-width: 768px) {
  .vitality-nav-hamburger-label {
    display: flex;
  }
  
  .vitality-nav-link-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--flex-accent-bright);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--flex-shadow-raised);
    text-align: center;
  }
  
  .vitality-nav-menu-toggle:checked ~ .vitality-nav-link-list {
    display: flex;
  }
}

/* Hero Section (Preset C: Fullscreen Gradient, no bg.webp, abstract shapes, large typographic numeric background) */
.motion-hero-envelope {
  position: relative;
  min-height: 100vh;
  background: var(--flex-bg-vibrant);
  color: var(--flex-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-spacious) 2rem;
  overflow: hidden;
}

.motion-hero-canvas {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.motion-hero-giant-number {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26rem;
  color: var(--flex-pure-white);
  opacity: 0.05;
  right: -5%;
  bottom: -5%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.motion-hero-left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.motion-hero-tagline {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--flex-accent-deep);
  letter-spacing: 2px;
  font-weight: 700;
}

.motion-hero-headline {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.motion-hero-summary {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 540px;
}

/* Abstract CSS shapes in Hero */
.motion-hero-right-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.abstract-geometric-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: var(--flex-radius-circle);
  background: radial-gradient(circle, var(--flex-accent-bright) 0%, transparent 70%);
  animation: float-shape-slow 8s infinite alternate ease-in-out;
}

.abstract-geometric-rect {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 4px solid var(--flex-accent-deep);
  border-radius: var(--flex-radius-soft);
  transform: rotate(45deg);
  animation: rotate-shape-slow 12s infinite linear;
}

@keyframes float-shape-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes rotate-shape-slow {
  0% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(135deg) translate(15px, 15px); }
  100% { transform: rotate(225deg) translate(0, 0); }
}

/* Pill trigger link button */
.fluid-trigger-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--flex-radius-soft);
  box-shadow: var(--flex-shadow-raised);
  transition: background-color 0.3s, transform 0.2s;
  align-self: flex-start;
}

.fluid-trigger-pill:hover {
  background-color: var(--flex-accent-deep);
  transform: translateY(-2px);
}

/* Content Section (Preset C: bg2.webp with diagonal clip-path, text with semi-transparent overlay) */
.angled-landscape-section {
  position: relative;
  padding: var(--space-spacious) 0;
  overflow: hidden;
}

.angled-landscape-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  filter: brightness(0.4);
  z-index: 1;
}

.angled-landscape-shell {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.angled-landscape-glass-card {
  max-width: 650px;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--flex-dark-charcoal);
  padding: 3rem;
  border-radius: var(--flex-radius-soft);
  box-shadow: var(--flex-shadow-raised);
  backdrop-filter: blur(10px);
}

.angled-landscape-glass-card h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--flex-accent-bright);
}

.angled-landscape-glass-card p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

/* Features Grid Section (Preset C: 3-column mesh, giant numbers instead of icons, minimal border) */
.joint-benefit-grid-section {
  padding: var(--space-normal) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.joint-benefit-head-area {
  text-align: center;
  margin-bottom: 4rem;
}

.joint-benefit-section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-bottom: 1rem;
}

.joint-benefit-section-lead {
  font-size: 1.15rem;
  color: var(--flex-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.joint-benefit-matrix-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.joint-benefit-visual-pod {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-left: 2px solid var(--flex-accent-bright);
}

.joint-benefit-giant-index {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--flex-accent-bright);
  line-height: .9;
}

.joint-benefit-pod-caption {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-top: 0.5rem;
}

.joint-benefit-pod-description {
  font-size: 1rem;
  color: var(--flex-text-muted);
}

/* "How it works" Timeline (Preset C: Horizontal steps with solid connector, alternating circles) */
.horizontal-timeline-segment {
  background-color: var(--flex-surface-creamy);
  padding: var(--space-normal) 2rem;
}

.horizontal-timeline-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.horizontal-timeline-header {
  text-align: center;
  margin-bottom: 5rem;
}

.horizontal-timeline-title {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
}

.horizontal-timeline-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 2rem;
}

.horizontal-timeline-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 4px;
  background-color: var(--flex-accent-bright);
  z-index: 1;
}

.horizontal-timeline-unit {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 30%;
}

.horizontal-timeline-circle {
  width: 64px;
  height: 64px;
  border-radius: var(--flex-radius-circle);
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s;
}

/* Filled Circle */
.horizontal-timeline-unit:nth-child(odd) .horizontal-timeline-circle {
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  border: 4px solid var(--flex-accent-bright);
}

/* Outline Circle */
.horizontal-timeline-unit:nth-child(even) .horizontal-timeline-circle {
  background-color: var(--flex-surface-creamy);
  color: var(--flex-accent-bright);
  border: 4px solid var(--flex-accent-bright);
}

.horizontal-timeline-unit:hover .horizontal-timeline-circle {
  transform: scale(1.1);
}

.horizontal-timeline-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-bottom: 0.5rem;
}

.horizontal-timeline-synopsis {
  font-size: 0.95rem;
  color: var(--flex-text-muted);
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .horizontal-timeline-track {
    flex-direction: column;
    gap: 3rem;
  }
  
  .horizontal-timeline-track::before {
    display: none;
  }
  
  .horizontal-timeline-unit {
    width: 100%;
  }
}

/* CTA Strip (Preset C: Dark bg, big heading left + pill-button right with flex-row) */
.vibrant-action-strip {
  background-color: var(--flex-dark-charcoal);
  color: var(--flex-pure-white);
  padding: var(--space-compact) 2rem;
}

.vibrant-action-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.vibrant-action-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vibrant-action-heading span {
  color: var(--flex-accent-bright);
  display: block;
}

.vibrant-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1srem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: var(--flex-radius-circle);
  box-shadow: var(--flex-shadow-raised);
  transition: transform 0.2s, background-color 0.3s;
}

.vibrant-action-pill:hover {
  background-color: var(--flex-accent-deep);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .vibrant-action-shell {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer Section */
.vitality-footer-area {
  background-color: #081220;
  color: #a4b0be;
  padding: 4rem 2rem 2rem 2rem;
  border-top: 5px solid var(--flex-accent-bright);
}

.vitality-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.vitality-footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.vitality-footer-brand-hub {
  max-width: 350px;
}

.vitality-footer-logo-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--flex-pure-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vitality-footer-logo-anchor svg {
  fill: var(--flex-pure-white);
}

.vitality-footer-menu-hub {
  display: flex;
  gap: 4rem;
}

.vitality-footer-sublist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vitality-footer-sublist a {
  color: #a4b0be;
  text-decoration: none;
  transition: color 0.3s;
}

.vitality-footer-sublist a:hover {
  color: var(--flex-accent-bright);
}

.vitality-footer-disclaimer-card {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.vitality-footer-disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.vitality-footer-legal-copy {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .vitality-footer-layout {
    flex-direction: column;
  }
  
  .vitality-footer-menu-hub {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Cookie Consent Banner */
.custom-cookie-banner-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--flex-dark-charcoal);
  color: var(--flex-pure-white);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.custom-cookie-banner-text {
  font-size: 0.95rem;
  max-width: 800px;
}

.custom-cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.custom-cookie-banner-allow {
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  border: none;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--flex-radius-soft);
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-cookie-banner-allow:hover {
  background-color: var(--flex-accent-deep);
}

.custom-cookie-banner-deny {
  background-color: transparent;
  color: var(--flex-pure-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--flex-radius-soft);
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-cookie-banner-deny:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Expert / Education page structures (Preset C layout rules) */
.expert-intro-panel {
  padding: var(--space-normal) 2rem;
  background-color: var(--flex-surface-creamy);
}

.expert-bio-mesh-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.expert-bio-left-text-card h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--flex-dark-charcoal);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.expert-bio-left-text-card p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--flex-text-muted);
}

.expert-bio-right-image-card {
  border-radius: var(--flex-radius-soft);
  overflow: hidden;
  box-shadow: var(--flex-shadow-raised);
}

.expert-bio-right-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4 horizontal stats */
.academic-stats-deck {
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  padding: 4rem 2rem;
}

.academic-stats-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.academic-stat-pod {
  display: flex;
  flex-direction: column;
}

.academic-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.academic-stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Final Expert Section with bg3.webp */
.educational-mission-parallax {
  position: relative;
  padding: var(--space-spacious) 2rem;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  color: var(--flex-pure-white);
}

.educational-mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 36, 97, 0.85);
  z-index: 1;
}

.educational-mission-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.educational-mission-inner h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.educational-mission-inner p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .expert-bio-mesh-layout {
    grid-template-columns: 1fr;
  }
}

/* Reservation Page Layout (Preset C: Left Form (60%) / Right Sidebar Info Cards (40%) + FAQ bottom) */
.scheduling-hub-section {
  padding: var(--space-normal) 2rem;
  background-color: var(--flex-surface-creamy);
}

.scheduling-hub-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.scheduling-form-container-card {
  background-color: var(--flex-pure-white);
  padding: 3rem;
  border-radius: var(--flex-radius-soft);
  box-shadow: var(--flex-shadow-raised);
}

.scheduling-form-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-bottom: 1.5rem;
}

.scheduling-form-lead {
  font-size: 1.05rem;
  color: var(--flex-text-muted);
  margin-bottom: 2rem;
}

.scheduling-form-field-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.scheduling-form-field-group label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  font-weight: 600;
}

.scheduling-form-input,
.scheduling-form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(12, 36, 97, 0.15);
  border-radius: var(--flex-radius-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.scheduling-form-input:focus,
.scheduling-form-textarea:focus {
  border-color: var(--flex-accent-bright);
}

.scheduling-form-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 2rem;
  cursor: pointer;
}

.scheduling-form-checkbox-container input {
  margin-top: 4px;
}

.scheduling-form-checkbox-text {
  font-size: 0.9rem;
  color: var(--flex-text-muted);
}

.scheduling-form-checkbox-text a {
  color: var(--flex-accent-bright);
}

.scheduling-form-submit-trigger {
  width: 100%;
  background-color: var(--flex-accent-bright);
  color: var(--flex-pure-white);
  border: none;
  padding: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--flex-radius-soft);
  cursor: pointer;
  box-shadow: var(--flex-shadow-raised);
  transition: background-color 0.3s;
}

.scheduling-form-submit-trigger:hover {
  background-color: var(--flex-accent-deep);
}

.scheduling-form-direct-mailto {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--flex-text-muted);
}

.scheduling-form-direct-mailto a {
  color: var(--flex-accent-bright);
  font-weight: bold;
}

/* Right Sidebar Info Cards */
.scheduling-sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.scheduling-sidebar-info-card {
  background-color: var(--flex-pure-white);
  padding: 2rem;
  border-radius: var(--flex-radius-soft);
  box-shadow: var(--flex-shadow-raised);
  border-top: 4px solid var(--flex-accent-bright);
}

.scheduling-sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scheduling-sidebar-card-title svg {
  fill: var(--flex-accent-bright);
}

.scheduling-sidebar-card-body {
  font-size: 0.95rem;
  color: var(--flex-text-muted);
}

.scheduling-sidebar-bullet-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.scheduling-sidebar-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.scheduling-sidebar-bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--flex-radius-circle);
  background-color: var(--flex-accent-bright);
}

/* FAQ Accordion (Preset C: All expanded by default, CSS only) */
.faq-section {
  padding: var(--space-normal) 2rem;
  background-color: var(--flex-pure-white);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-card {
  border-bottom: 1px solid rgba(12, 36, 97, 0.1);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-bottom: 0.8rem;
}

.faq-answer {
  font-size: 1rem;
  color: var(--flex-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .scheduling-hub-shell {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages (Privacy Policy, Terms) */
.legal-document-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-normal) 2rem;
}

.legal-document-title {
  font-family: var(--font-display);
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--flex-dark-charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

.legal-document-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--flex-text-muted);
}

.legal-document-content p {
  margin-bottom: 1.5rem;
}

.legal-document-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--flex-dark-charcoal);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Thank you page styles */
.thanks-slate-envelope {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-normal) 2rem;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.thanks-slate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 36, 97, 0.85);
  z-index: 1;
}

.thanks-slate-card {
  position: relative;
  z-index: 2;
  background-color: var(--flex-pure-white);
  padding: 4rem;
  border-radius: var(--flex-radius-soft);
  box-shadow: var(--flex-shadow-raised);
  max-width: 600px;
  text-align: center;
}

.thanks-slate-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--flex-accent-bright);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.thanks-slate-body {
  font-size: 1.15rem;
  color: var(--flex-text-muted);
  margin-bottom: 2rem;
}