/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* --- GLOBAL VARIABLES (The Theme) --- */
:root {
    /* Colors pulled from the logo */
    --primary-blue: #0A369D; /* Deep Navy Blue */
    --secondary-grey: #8A8D91; /* Silver/Grey */
    --dark-text: #222222;
    --light-bg: #f8f9fa;
    --white: #ffffff;

    /* Fonts */
    --font-heading: 'Merriweather', serif; /* Authoritative, matches logo */
    --font-body: 'Open Sans', sans-serif;  /* Clean, modern readability */
}

/* --- GLOBAL RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
}

a {
    text-decoration: none;
}