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

:root {
  /* Modern, contrasting 4-color palette */
  --primary-color: #0d9488; /* Deep Teal */
  --secondary-color: #d97706; /* Sandy Gold / Amber */
  --dark-color: #1f2937; /* Charcoal */
  --light-color: #f9fafb; /* Off-white */
  
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
  --gradient-secondary: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
}

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #b45309;
  transform: translateY(-2px);
}

/* Common Layout Styles */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* 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: 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;
}

/* Numbered lists custom style */
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.custom-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

.min-h-100 {
  min-height: calc(100vh - 200px);
}