/* Generic base styles - reset, variables, typography, layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #1a1a1a;
    --secondary-color: #663300;
    --accent-color: #C07E07;
    --text-color: #3a3a3a;
    --text-light: #6b6b6b;
    --bg-color: #fffef5;
    --bg-light: #f9f5e2;
    --bg-dark: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #48bb78;
    --error-color: #f56565;
    --warm-gray: #8b8b8b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1.1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.25rem;
    --font-size-section-title: 2.5rem;
    --font-size-section-subtitle: 1.125rem;
    --font-size-heading-1: 2.5rem;
    --font-size-heading-2: 2rem;
    --font-size-heading-3: 1.5rem;
    --font-size-hero-title: 3rem;
    --font-size-hero-subtitle: 1.25rem;
    --font-size-card-title: 1.5rem;
    --font-size-button: 1rem;
    /* Layout */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --container-max-width: 1200px;
}

body {
    font-family: var(--font-family-base);
    color: var(--text-color);
    font-size: var(--font-size-base);
    background-color: var(--bg-color);
}

p, h1, h2, h3, h4, h5, h6, li, ul, ol {
    margin: 0.5rem 0;
    line-height: 1.3;
}

h1 { font-size: var(--font-size-heading-1); }
h2 { font-size: var(--font-size-heading-2); }
h3 { font-size: var(--font-size-heading-3); }

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.top-container {
    margin: 0 auto;
    padding: 0 40px;
}
