:root {
  /* Colorful Theme Variables */
  --color-primary: #0d9488; /* Teal 600 */
  --color-secondary: #ea580c; /* Orange 600 */
  --color-navy: #1e3a8a; /* Blue 900 */
  --color-light: #f8fafc; /* Slate 50 */
  --color-dark: #0f172a; /* Slate 900 */
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Open Sans', sans-serif;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  --gradient-secondary: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  --gradient-navy: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--color-dark);
  background-color: var(--color-light);
}

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

/* Custom list marker for cards */
.custom-list {
  list-style: none;
  padding-left: 0;
}

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

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

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

/* Mobile Menu Transition */
#mobile-menu {
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}
#mobile-menu.open {
  max-height: 300px;
}