body {
  overflow-x: hidden;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #f1f5f9;
  font-size: 18px;
  line-height: 1.75;
}

.hero {
  width: 100%;
  background: #020617;
}

\.hero-inner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero img {
  width: 100vw;        /* full-bleed */
  max-width: none;
  height: auto;        /* keep full logo visible */
  max-height: none;    /* prevent cropping */
  object-fit: contain;
  display: block;
}
.section {
  padding: 5.5rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.centered { text-align: center; }

.tagline h1 { font-size: 2.9rem; }

.tagline p { font-size: 1.3rem; }

.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.8rem;
}

.box, .wide {
  background: #ffffff;
  padding: 4.2rem;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.resources h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.resource-card {
  background: #ffffff;
  padding: 3rem;
  text-align: center;
  text-decoration: none;
  color: #1f3a5f;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-form {
  max-width: 520px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  font-size: 1rem;
}

.contact-form button {
  padding: 1rem;
  background: #1f3a5f;
  color: #ffffff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.footer {
  background: #020617;
  color: #ffffff;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.footer a { color: #ffffff; text-decoration: none; }
