/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-sage: #8B9B87;
    --light-sage: #A8B5A0;
    --cream: #F5EBE0;
    --warm-beige: #E8D5C4;
    --dark-sage: #6B7B67;
    --text-dark: #3D4A3D;
    --text-light: #5A6B5A;
    --white: #FEFEFE;
    --soft-shadow: 0 4px 20px rgba(107, 123, 103, 0.15);
    --hover-shadow: 0 8px 30px rgba(107, 123, 103, 0.25);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-sage);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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