
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

header {
  background: #003366;
  color: #fff;
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

nav a {
  color: #fff;
  margin: 0 0.5em;
  text-decoration: none;
}

#about-hero {
  text-align: center;
  background: #003366;
  color: #fff;
  padding: 3em 1em;
}

#about-hero h2 {
  margin: 0;
  font-size: 2.5em;
}

#about-hero .mission {
  font-size: 1.2em;
  margin-top: 0.5em;
}

#core-values {
  max-width: 800px;
  margin: 2em auto;
  padding: 0 1em;
}

#core-values h3 {
  text-align: center;
  color: #003366;
}

#core-values ul {
  list-style: none;
  padding: 0;
}

#core-values li {
  margin: 1em 0;
  line-height: 1.6em;
}

#about-stats {
  background: #f9f9f9;
  padding: 2em 1em;
  border-radius: 8px;
  margin: 2em auto;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2em;
  text-align: center;
}

.stat h3 {
  font-size: 2.5em;
  color: #003366;
  margin: 0;
}

.stat p {
  margin: 0.5em 0 0;
}

#mission-image img {
  display: block;
  max-width: 100%;
  margin: 2em auto;
  border-radius: 8px;
}

footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 2em 1em;
  margin-top: auto;
}

footer .social-icons {
  margin-top: 1em;
}

footer .social-icons img {
  width: 24px;
  height: 24px;
  margin: 0 0.5em;
  vertical-align: middle;
}

.top-bar {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  font-size: 0.9em;
  position: relative;
}

.top-bar .close-bar {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo-title img {
  height: 100px;
  margin-right: 1em;
  background: white;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav {
    margin-top: 1em;
  }
  .stats {
    flex-direction: column;
  }
}

#about-hero-banner {
  background: url('images/mission-container.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6em 1em;
  position: relative;
}

#about-hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

#about-hero-banner h1 {
  position: relative;
  z-index: 1;
  font-size: 3em;
}

#about-story {
  max-width: 800px;
  margin: 4em auto;
  padding: 0 1em;
  text-align: center;
}

#core-values {
  background: #f9f9f9;
  padding: 4em 1em;
  text-align: center;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
}

.value-card {
  background: #fff;
  padding: 2em;
  max-width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#about-stats {
  display: flex;
  justify-content: center;
  gap: 3em;
  background: #003366;
  color: #fff;
  padding: 4em 1em;
}

#about-stats .stat {
  text-align: center;
}

#about-stats .stat h3 {
  font-size: 3em;
  margin: 0;
}


#about-stats .stat h3 {
  color: #fff;
}
