@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  /* Modern contrasting palette for a light, healthy theme */
  --primary-color: #0F172A; /* Deep Navy */
  --accent-color: #0D9488; /* Vibrant Teal */
  --secondary-color: #F8FAFC; /* Soft Slate/Sand */
  --text-color: #334155; /* Neutral Dark Slate */
  --white: #FFFFFF;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-text);
  color: var(--text-color);
  background-color: var(--white);
  scroll-behavior: smooth;
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

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

/* Custom Numbered List for Cards */
.numbered-list-custom {
  list-style: none;
  padding-left: 0;
}

.numbered-list-custom li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.numbered-list-custom li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

.numbered-list-container {
  counter-reset: my-counter;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--white);
  color: var(--accent-color);
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

.cookie-btn-alt:hover {
  background-color: #6B7280;
  color: #ffffff;
}

/* Mobile menu hidden state */
#mobile-menu.hidden {
  display: none;
}

/* Base minimum height for generic pages to ensure footer is pushed down */
.min-body-height {
  min-height: calc(100vh - 300px);
}