:root {
  --primary-color: #0F766E; /* Teal 700 */
  --secondary-color: #1E293B; /* Slate 800 */
  --accent-color: #F97316; /* Orange 500 */
  --bg-color: #F8FAFC; /* Slate 50 */
  --gradient-primary: linear-gradient(135deg, #0F766E, #115E59);
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 50;
  flex-direction: column;
}
.mobile-menu.active {
  display: flex;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-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: inherit;
  transition: all 0.3s ease;
}

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

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

/* Numbered List for Cards */
.custom-list {
  list-style: none;
  padding: 0;
}
.custom-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.custom-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}