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

:root {
    --primary: #F57C00;
    --primary-dark: #e06b00;
    --secondary: #246B90;
    --dark: #0F1720;
    --medium: #334155;
    --light: #F7F8FA;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.shadow-md {
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
}