:root {
  /* Color Palette - Modern & Contrast */
  --primary-color: #0d9488; /* Teal / Emerald accent */
  --secondary-color: #fef3c7; /* Soft Beige */
  --accent-color: #f97316; /* Vibrant Coral/Orange */
  --dark-color: #1e293b; /* Dark Slate */
  --light-color: #ffffff;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

/* Base Styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

main {
  flex: 1;
}

/* Mobile Menu Toggle classes */
.mobile-menu-hidden {
  display: none;
}
.mobile-menu-active {
  display: flex;
}

/* 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(--accent-color);
  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;
}

/* Form Styles */
.custom-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  margin-top: 0.25rem;
  font-family: var(--font-text);
  transition: border-color 0.3s;
}
.custom-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

/* Utility to ensure footer stays at bottom */
.min-h-100 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}