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

:root {
    --navy: #1F3B73;
    --forest: #2E6B3F;
    --sage: #6BA45C;
    --gold: #C9AE63;
    --light-gold: #DCCB98;
    --background: #F8F7F2;
    --text: #333333;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.7;
}

header {
    background: var(--background);
    border-bottom: 4px solid var(--gold);
    text-align: center;
    padding: 40px 20px;
}

.logo {
    max-width: 150px; /* Limits size on desktop (adjust 150px larger/smaller as needed) */
    width: 100%;      /* Allows it to shrink fluidly on small screens */
    height: auto;     /* Maintains the original proportions without stretching */
    display: block;   /* Removes unwanted inline space below the image */
    margin: 0 auto 15px auto; /* Centers the image and adds space above the title */
    mix-blend-mode: multiply; /* Blends out the white square background on the logo image */
}

header h1 {
    color: var(--navy);
    font-size: 3rem;
}

header p {
    color: var(--forest);
    font-size: 1.2rem;
    margin-top: 10px;
}

nav {
    background: var(--navy);
    text-align: center;
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-weight: 600;
}

nav a:hover {
    color: var(--light-gold);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 30px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    color: var(--navy);
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
}

.button {
    display: inline-block;
    margin: 15px 10px;
    padding: 14px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.button-primary {
    background: var(--forest);
    color: white;
}

.button-secondary {
    background: var(--gold);
    color: white;
}

.button-primary:hover {
    background: var(--sage);
}

.button-secondary:hover {
    background: #b89b4d;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

h2 {
    color: var(--navy);
    margin-bottom: 15px;
}

footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.copyright {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75); /* Softens the text to lower visual dominance */
    max-width: 800px;                  /* Keeps long text bounded for easy reading */
    margin: 0 auto;
    line-height: 1.5;
}
