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

/* styles.css */
:root {
  --color-navy: #10213B;
  --color-teal: #3b7b8e;
  --color-teal-light: #e6f0f2;
  --color-coral: #d46b5a;
  --color-mustard: #e6b34a;
  --color-sage: #8e9e82;
  --color-cream: #FBF8F3;
  --color-white: #ffffff;
  --color-card-bg: #FFFDFC;
  --color-gray-dark: #333333;
  --color-gray-medium: #777777;
  --color-gray-light: #e5e5e5;
  
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Merriweather', Georgia, "Times New Roman", serif;
  
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

p {
  margin-bottom: var(--spacing-md);
}

.quiz-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-container {
  display: none;
  flex: 1;
  width: 100%;
}

.step-container.active {
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  padding: var(--spacing-lg);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.center-vertical {
  justify-content: center;
}

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