body {
    margin: 0;
    background-color: #f5f5f5;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222222;
    font-size: 16px;
}

.page {
    max-width: 1020px;
    margin: 0 auto 40px;
    padding: 0 32px 32px;
}

h1 {
    font-size: 40px;
    font-weight: 650;

}

h2 { 
    font-size: 26px;
    color: #05519d;
    font-weight: 550;
}

h3 { 
    font-size: 20px;
    font-weight: 550;

}

h1, h2, h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    padding: 0px;
}

p { 
    line-height: 1.7;
    max-width: 720px;
}

section p { 
    margin-bottom: 12px;
}

section {
    margin-top: 32px
}

p, li {
    line-height: 1.5;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 12px 24px;
    border-bottom: 1px solid #dddddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.logo{
    height: 65px;
    width: auto;
}

.nav-left {
    flex: 1;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #05519d;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.06em;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
    color: #003366;
    border-color: #003366;
}

.stages-card { 
    margin-top: 16px;
    padding: 20px 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04)
}

.stages {
    padding-left: 20px;
    margin: 0;
}

.stages li { 
    margin-bottom: 6px;
}

.contact-section {
    margin-top: 24px;
    padding: 20px 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

form { 
    margin-top: 16px;
}

form label { 
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

form input,
form textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

form button {
    margin-top: 8px;
    padding: 10px 18px;
    background-color: #dddddd;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

form button:hover {
    background-color: #8f8f8f;
}


.hero { 
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
    url("../hero.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 70px 48px;
    color: #ffffff;
    margin-top: 24px;

    display: flex;
    align-items: flex-end;
}

.hero-text { 
    max-width: 520px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 22px;
    background-color: #05519d;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background-color: #003366;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
}

section ul { 
    list-style: none;
    padding-left: 0;
}

section ul li:before {
    content: "•";
    color: #05519d;
    font-weight: 700;
    display: inline-block;
    width: 1em;
    margin-left: 0;
}

section ul li {
    margin-bottom: 6px;
}

.site-footer { 
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #dddddd;
    font-size: 12px;
    color: #666666;
    text-align: center;
}

.page-title-wrapper {
    border-bottom: 3px solid #05519d;
    padding-bottom: 12px;
    margin-bottom: 24px;

}

.key-callout {
  margin-top: 8px;
  padding: 2px 4px;
  background-color: #efefef;
  border-left: 3px solid #05519d;
  border-radius: 4px;
}
