@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --lifestyle-bg: #FCF8F5;
  --lifestyle-surface: #FFFFFF;
  --mobility-accent: #E63946;
  --mobility-accent-hover: #D62828;
  --joint-text-dark: #1D3557;
  --joint-text-light: #457B9D;
  --cartilage-border: #E2E8F0;
  --flex-gradient: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
  --overlay-dark: rgba(29, 53, 87, 0.85);
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  --radius-soft: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--lifestyle-bg);
  color: var(--joint-text-dark);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* Header & Navigation Reset */
.site-top-ribbon {
  width: 100%;
  z-index: 50;
  position: relative;
}

.nav-links-wrap a {
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.nav-links-wrap a:hover {
  opacity: 0.8;
}

/* Mobile Menu Logic (CSS Only) */
.mobile-pane {
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
#mobile-toggle {
  display: none;
}
#mobile-toggle:checked ~ .mobile-pane {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-trigger-lbl { display: none; }
  .mobile-pane { display: none !important; }
  .desktop-pane { display: flex; }
}
@media (max-width: 767px) {
  .desktop-pane { display: none; }
}

/* Preset C Specific Styles */
.offset-image-wrap {
  margin-left: -2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .offset-image-wrap {
    margin-left: 0;
  }
}

.horizontal-item-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--cartilage-border);
}

.vertical-step-connector {
  position: relative;
  padding-left: 3rem;
}
.vertical-step-connector::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--mobility-accent);
  opacity: 0.3;
}
.step-number-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translateX(-50%);
}

.action-trigger-el {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: var(--radius-soft);
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}
.action-trigger-el:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* FAQ Accordion */
.faq-details-item {
  border-bottom: 1px solid var(--cartilage-border);
}
.faq-details-item summary {
  cursor: pointer;
  list-style: none;
}
.faq-details-item summary::-webkit-details-marker {
  display: none;
}

/* Cookie Banner */
.cookie-notice-pane {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  display: none;
}