:root {
  --navy: #0b2d4d;
  --navy-dark: #081d33;
  --teal: #1fa8a3;
  --teal-light: #e6f7f6;
  --bg: #ffffff;
  --text: #233044;
  --muted: #5a6b7d;
  --border: #e2e8f0;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: var(--navy);
  color: #fff;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.nav .brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
}

.nav .links a {
  color: #fff;
  margin-left: 1.5rem;
  font-weight: 500;
}

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

.nav .links a.connect-link:first-of-type {
  margin-left: 2rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero {
  background: var(--navy);
  color: #fff;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-inner img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--teal);
  flex-shrink: 0;
}

.hero-text h1 {
  margin: 0 0 0.25rem;
  font-size: 2rem;
}

.hero-text .title {
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-text .tagline {
  color: #d6e1ec;
  font-size: 1.1rem;
  max-width: 32rem;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about p {
  margin: 0 0 1rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.strength-card {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.strength-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.strength-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  background: var(--teal-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.cta h2 {
  margin-top: 0;
}

.button {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}

.button:hover {
  background: var(--navy);
  text-decoration: none;
  color: #fff;
}

footer {
  background: var(--navy-dark);
  color: #d6e1ec;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: var(--teal);
}

/* Contact page */
.contact-form label {
  display: block;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 1.25rem;
  background: var(--teal);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--navy);
}

.contact-alt {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-text .tagline {
    max-width: none;
  }

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

  .nav {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .nav .links a {
    margin: 0 0.75rem;
  }

  .nav .links a.connect-link:first-of-type {
    margin-left: 0.75rem;
    padding-left: 0;
    border-left: none;
  }
}
