* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  color: #0b2c4d;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0b5ed7;
}

.navbar a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

.logo {
  height: 50px;
}

.hero {
  height: 70vh;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 900px;
  line-height: 1.6;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.alt {
  background: #f1f5f9;
}

.resources {
  list-style: none;
  margin-top: 1rem;
}

.resources li {
  margin: 0.5rem 0;
}

footer {
  background: #0b5ed7;
  color: white;
  padding: 1rem;
  text-align: center;
}
