:root {
  --primary: #1f2937;
  --secondary: #6b7280;
  --accent: #10b981;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --white: #ffffff;
  --text-light: #374151;
  --border-light: #e5e7eb;
  --border-focus: #3b82f6;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --transition: all 0.2s ease-in-out;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  color: var(--text-light);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--primary);
  text-decoration: underline;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Hero section text colors */
.hero h1 {
  color: #f8f9fa;
}

.hero p {
  color: #f8f9fa;
}

/* Footer text color */
footer,
footer p {
  color: #f8f9fa !important;
  margin: 0;
}

footer a {
  color: #f8f9fa !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

footer a:hover,
footer a:focus {
  border-bottom-color: #f8f9fa;
  text-decoration: none;
}
