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

:root {
  --primary-color: #0f172a; /* Dark background */
  --secondary-color: #1e293b; /* Card background */
  --accent-color: #3b82f6; /* Blue for buttons and highlights */
  --accent-hover: #2563eb;
  --text-main: #f8fafc; /* White/gray text */
  --text-muted: #94a3b8;
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  background-color: var(--primary-color);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.heading-font {
  font-family: var(--font-heading);
}

main {
  flex: 1;
}

/* 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: 400px;
  opacity: 1;
}

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

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--text-main);
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}

.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: var(--font-text);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}
.cookie-btn-alt:hover {
  background-color: #374151;
}