:root {
  /* Site Colors */
  --primary-color: #0E7490; /* Cyan-700 */
  --secondary-color: #0284C7; /* Light Blue-600 */
  --accent-color: #F59E0B; /* Amber-500 */
  --dark-color: #0F172A; /* Slate-900 */
  --light-color: #F8FAFC; /* Slate-50 */
  --text-color: #334155; /* Slate-700 */

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, #F59E0B, #D97706);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-text);
  color: var(--text-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);
}

/* Custom classes for gradients (as requested via inline style, but defining here for fallback/utility if needed, though inline will be used) */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile menu transition */
.mobile-menu {
  display: none;
  transition: all 0.3s ease-in-out;
}
.mobile-menu.active {
  display: block;
}

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

/* Custom Numbered Lists */
.num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Form inputs */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-family: var(--font-text);
  margin-top: 0.5rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input:focus {
  border-color: var(--primary-color);
}