:root {
--navy: #10233f;
--blue: #1769aa;
--light-blue: #eaf3fa;
--text: #263442;
--muted: #657383;
--white: #ffffff;
--border: #dbe3ea;
--max-width: 1120px;
}

    {
    box-sizing: border-box;
    }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: var(--text);
line-height: 1.65;
background: var(--white);
}

.container {
width: min(92%, var(--max-width));
margin: 0 auto;
}

.narrow {
max-width: 820px;
}

.site-header {
background: var(--white);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 10;
}

.nav {
min-height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.logo {
color: var(--navy);
font-size: 1.7rem;
font-weight: 800;
letter-spacing: 0.12em;
text-decoration: none;
}

nav {
display: flex;
flex-wrap: wrap;
gap: 22px;
}

nav a,
.footer-links a {
color: var(--text);
text-decoration: none;
}

nav a:hover,
.footer-links a:hover {
color: var(--blue);
}

.hero {
background:
linear-gradient(135deg, var(--navy), #194c78);
color: var(--white);
padding: 110px 0;
}

.hero h1 {
max-width: 850px;
margin: 10px 0 24px;
font-size: clamp(2.5rem, 6vw, 4.6rem);
line-height: 1.05;
}

.hero-text {
max-width: 760px;
font-size: 1.2rem;
color: #e7f0f7;
}

.eyebrow {
margin: 0;
color: var(--blue);
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.14em;
}

.hero .eyebrow {
color: #9fd0ef;
}

.button {
display: inline-block;
margin-top: 20px;
padding: 12px 22px;
border-radius: 5px;
background: var(--white);
color: var(--navy);
text-decoration: none;
font-weight: 700;
}

.section {
padding: 90px 0;
}

.section-alt {
background: var(--light-blue);
}

.section h2 {
margin: 8px 0 25px;
color: var(--navy);
font-size: clamp(2rem, 4vw, 3rem);
line-height: 1.15;
}

.cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 40px;
}

.card {
padding: 30px;
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
}

.card h3 {
margin-top: 0;
color: var(--navy);
}

.section-dark {
background: var(--navy);
color: var(--white);
}

.section-dark h2 {
color: var(--white);
}

.section-dark .eyebrow {
color: #9fd0ef;
}

.contact-email {
font-size: 1.25rem;
font-weight: 700;
}

.contact-email a {
color: #9fd0ef;
}

.address {
color: #d4e0e9;
}

.site-footer {
background: #091729;
color: #c9d4df;
padding: 35px 0 20px;
}

.footer-content {
display: flex;
justify-content: space-between;
gap: 30px;
}

.site-footer strong {
color: var(--white);
font-size: 1.2rem;
}

.site-footer p {
margin: 4px 0;
}

.footer-links {
display: flex;
gap: 20px;
align-items: center;
}

.footer-links a {
color: #c9d4df;
}

.copyright {
margin-top: 30px;
padding-top: 18px;
border-top: 1px solid #24364a;
font-size: 0.85rem;
color: #9aabba;
}

@media (max-width: 760px) {
.nav {
padding: 15px 0;
align-items: flex-start;
flex-direction: column;
}

nav {
    gap: 12px 18px;
}

.hero {
    padding: 75px 0;
}

.section {
    padding: 65px 0;
}

.cards {
    grid-template-columns: 1fr;
}

.footer-content {
    flex-direction: column;
}

.footer-links {
    flex-direction: column;
    align-items: flex-start;
}

}