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

:root {
  --primary-background: #FAF4EE;
  --text-color: #333;
  --accent-color: #287C6B; /* New green */
  --accent-dark: #113C4F; /* New dark teal */
  --secondary-color: #ffffff;
  --light-gray: #f0f0f0;
  --medium-gray: #e0e0e0;
  --dark-gray: #888;
  --border-radius: 6px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

/* Base styles */
html,
body {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  background: var(--primary-background);
}

/* Responsive typography */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* Default styles */
button, input[type="button"], input[type="submit"] {
  cursor: pointer;
}

button:focus, a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

/* Images should be responsive by default */
img {
  max-width: 100%;
  height: auto;
}

/* Make form elements consistent */
input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}