:root {
  /* Colorful Contrast Palette */
  --brand-sunrise: #FF6B6B;      /* Warm Accent */
  --brand-ocean: #4ECDC4;        /* Cool Accent */
  --ui-night: #292F36;           /* Dark Text/Backgrounds */
  --ui-paper: #F7FFF7;           /* Light Background */
  
  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Roboto', sans-serif;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--brand-sunrise), var(--brand-ocean));
  --gradient-dark: linear-gradient(135deg, var(--ui-night), #1a1e23);
  --gradient-light: linear-gradient(135deg, var(--ui-paper), #e8f5e8);
}

body {
  font-family: var(--font-body);
  background-color: var(--ui-paper);
  color: var(--ui-night);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* Custom Semantic Classes to avoid standard framework footprints */
.nav-wrapper-custom {
  background-color: var(--ui-paper);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.intro-motion-wrap {
  color: var(--ui-paper);
  padding: 4rem 1rem;
}

.joint-edu-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media(min-width: 768px) {
  .joint-edu-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.habit-pointer-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border-bottom: 4px solid var(--brand-ocean);
}

.habit-pointer-item:hover {
  transform: translateY(-5px);
}

.step-flow-box {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-flow-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--ui-paper);
  margin: 0 auto 1rem auto;
  background-color: var(--brand-sunrise);
}

.footer-base-zone {
  background-color: var(--ui-night);
  color: var(--ui-paper);
  margin-top: auto;
}

/* Numbered List with colored circles for Reserve Page */
.info-numbered-sequence {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}

.info-numbered-sequence li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.info-numbered-sequence li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--brand-sunrise);
  color: var(--ui-paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.stat-figure-unit {
  text-align: center;
  padding: 2rem;
}

.stat-figure-big {
  font-size: 3.5rem;
  font-family: var(--font-display);
  color: var(--brand-sunrise);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-night);
  color: var(--ui-paper);
  z-index: 9999;
  padding: 1rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
  display: none; /* Handled by JS */
}

.cookie-action-btn-acc {
  background-color: var(--brand-ocean);
  color: var(--ui-night);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  transition: opacity 0.3s;
}

.cookie-action-btn-acc:hover {
  opacity: 0.9;
}

.cookie-action-btn-dec {
  background-color: #4B5563;
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
}

.btn-primary-action {
  display: inline-block;
  padding: 0.75rem 2rem;
  color: var(--ui-night);
  font-weight: bold;
  border-radius: 9999px;
  text-align: center;
  transition: opacity 0.3s;
  background-color: var(--brand-ocean);
}

.btn-primary-action:hover {
  opacity: 0.85;
}

.btn-secondary-action {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--brand-sunrise);
  color: var(--ui-paper);
  font-weight: bold;
  border-radius: 9999px;
  text-align: center;
  transition: opacity 0.3s;
}

.btn-secondary-action:hover {
  opacity: 0.85;
}