/* Custom CSS Variables */
:root {
    --brand-primary: #006D5B;
    --brand-dark: #004d40;
    --brand-light: #e0f2f1;
    --accent-color: #ff9800;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', serif;
    color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}