:root {
    --primary-dark-blue: #0a2463;
    --primary-blue: #1e3a8a;
    --accent-gold: #d4af37;
    --light-blue: #3e78b2;
    --success-green: #28a745;
    --error-red: #dc3545;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
    --animation-timing: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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