:root {
  --navy: #1f3864;
  --teal: #0e7c7b;
  --gray: #555;
  --light-bg: #eef2f8;
}

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

body {
  font-family: "Segoe UI", Calibri, Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: white;
  padding: 24px 6% 80px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo { font-weight: 700; font-size: 1.2rem; }

.nav-cta {
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 4px;
}

.hero-content { max-width: 700px; }

.hero h1 { font-size: 2.6rem; margin-bottom: 20px; }

.subhead { font-size: 1.15rem; opacity: 0.95; margin-bottom: 30px; }

.cta {
  display: inline-block;
  background: white;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
}

.section { padding: 70px 6%; max-width: 1100px; margin: 0 auto; }

.section.alt { background: var(--light-bg); max-width: none; }
.section.alt > * { max-width: 1100px; margin-left: auto; margin-right: auto; display: block; }

.section h2 { color: var(--navy); font-size: 1.9rem; margin-bottom: 30px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
}

.card h3 { color: var(--teal); margin-bottom: 10px; }

form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

button {
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 30px;
  color: var(--gray);
  font-size: 0.9rem;
}
