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

:root {
  /* Visual Variables - Modern Contrast Palette (Light Theme) */
  --primary-color: #059669; /* Emerald Green */
  --secondary-color: #D1FAE5; /* Light Emerald */
  --dark-color: #1F2937; /* Dark Gray */
  --light-color: #F9FAFB; /* Off White */
  --accent-color: #F59E0B; /* Amber (for contrast) */
  
  /* Typography Variables */
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;
}

/* Base Styles using variables */
body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.text-dark { color: var(--dark-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--light-color); }
.text-accent { color: var(--accent-color); }
.bg-accent { background-color: var(--accent-color); }

/* Utilities */
.heading-accent {
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
  font-family: var(--font-text);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-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(--primary-color);
  color: #ffffff;
  border-radius: 50px;
  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;
}

/* Forms and Inputs */
input, textarea {
  font-family: var(--font-text);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--secondary-color);
}

/* Specific component styles */
.feature-icon {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Mobile Menu Toggle */
.mobile-menu-active {
  display: flex !important;
}

/* Numbered lists with colored accents */
.accent-list {
  list-style: none;
  padding: 0;
}
.accent-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}
.accent-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* FAQ Accordion basics */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
}