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

:root {
  /* Site Colors - Dark Theme */
  --bg-color: #0f172a; /* Slate 900 */
  --surface-color: #1e293b; /* Slate 800 */
  --accent-color: #0d9488; /* Teal 600 */
  --secondary-accent: #f59e0b; /* Amber 500 */
  --text-main: #f8fafc; /* Slate 50 */
  --text-muted: #cbd5e1; /* Slate 300 */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --gradient-overlay: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95));

  /* Fonts */
  --font-heading: 'Oswald', sans-serif;
  --font-text: 'Inter', sans-serif;
}

body {
  font-family: var(--font-text);
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Custom UI Elements */
.text-accent {
  color: var(--accent-color);
}

.text-secondary {
  color: var(--secondary-accent);
}

.bg-surface {
  background-color: var(--surface-color);
}

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

#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

/* Form Styles */
.custom-input {
  background-color: var(--bg-color);
  border: 1px solid #334155;
  color: var(--text-main);
}
.custom-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px var(--accent-color);
}

/* Numbered Lists */
.numbered-list-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.numbered-list-item::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: bold;
}
.numbered-list-container {
  counter-reset: list-counter;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--text-main);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.5);
  border-top: 2px solid var(--accent-color);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.75rem 2.5rem;
  margin: 0.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.cookie-btn-alt {
  background: #334155;
  color: var(--text-main);
}
.cookie-btn-alt:hover {
  background: #475569;
  box-shadow: none;
}