:root {
  /* Vibrant, energetic, yet clean palette */
  --primary-color: #0E7490; /* Cyan 700 */
  --accent-color: #EA580C;  /* Orange 600 */
  --dark-color: #111827;    /* Gray 900 */
  --light-color: #ECFEFF;   /* Cyan 50 */
  
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Inter', sans-serif;
}

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

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

/* 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 Utilities */
.hero-overlay {
  background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(14, 116, 144, 0.6));
}