:root {
  --font-family: 'Space Grotesk', sans-serif;
  --bg-color: #f2efe4;
  --text-main: #0b3427;
  --text-muted: #1a513e;
  --accent-color: #0b3427;
  --btn-primary-bg: #0b3427;
  --btn-primary-text: #f2efe4;
  --btn-primary-hover: #072219;
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #0b3427;
  --btn-secondary-hover: rgba(11, 52, 39, 0.05);
  
  --marquee-bg: #0b3427;
  --marquee-text: #f2efe4;
  
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}
