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

:root {
  /* Modern High-Contrast Palette for Health/Lifestyle */
  --primary: #1E3A8A; /* Deep Blue */
  --secondary: #FDE047; /* Bright Yellow for contrast */
  --accent: #10B981; /* Emerald Green for health/lifestyle */
  --dark: #111827; /* Dark Gray for text */
  --light: #F8FAFC; /* Off-white for backgrounds */
  
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* Custom bullet list for methods */
.custom-list {
  list-style: none;
  padding-left: 0;
  counter-reset: custom-counter;
}

.custom-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}

.custom-list li::before {
  counter-increment: custom-counter;
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  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: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

/* Utilities */
.bg-primary { background-color: var(--primary); }
.text-primary { color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.text-accent { color: var(--accent); }
.bg-secondary { background-color: var(--secondary); }
.text-secondary { color: var(--secondary); }

/* Mobile menu toggle */
#mobile-menu {
  display: none;
}
#mobile-menu.active {
  display: block;
}