body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7fafc;
  color: #193d2f;
}
header {
  background: #56b888;
  color: white;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
}
nav {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 1rem;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
.container {
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(34, 60, 80, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
}
.container h1 {
  color: #1a5134;
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
}
.container h2 {
  color: #388e60;
  font-size: 1.3rem;
  margin: 2.1rem 0 0.5rem 0;
}
.mission {
  font-size: 1.11rem;
  background: #e8f5ef;
  border-radius: 1rem;
  padding: 1.3rem 1rem;
  margin-bottom: 1.5rem;
  color: #193d2f;
  box-shadow: 0 1px 7px rgba(56, 184, 136, 0.05);
}
.history {
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #355b47;
}
.community {
  background: #e8f5ef;
  border-radius: 1rem;
  padding: 1.2rem 1rem 1.4rem 1rem;
  color: #1a5134;
  margin-bottom: 1.3rem;
  box-shadow: 0 1px 7px rgba(56, 184, 136, 0.05);
}
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}
.member {
  background: #f4f9f7;
  border-radius: 1rem;
  padding: 1rem 1rem 0.8rem 1rem;
  text-align: center;
  box-shadow: 0 1px 6px rgba(56, 184, 136, 0.04);
  color: #355b47;
}
.member h3 {
  margin-bottom: 0.2rem;
  color: #1a5134;
  font-size: 1.08rem;
}
.member p {
  font-size: 0.99rem;
  color: #388e60;
}
@media (max-width: 900px) {
  .container {
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .team {
    gap: 0.6rem;
  }
}
img {
    max-height: 20em;
    width: 100%;
    margin: auto;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(56, 144, 86, 0.07);
    object-fit: cover;
}

footer {
  background: #56b888;
  color: white;
  text-align: center;
  padding: 1.3rem 0 1rem 0;
  border-radius: 1.5rem 1.5rem 0 0;
  margin-top: 2rem;
  font-size: 1.02rem;
}

.top-banner {
  background: linear-gradient(90deg, #56b888 0%, #a0e49d 100%);
  box-shadow: 0 4px 18px rgba(56,184,136,0.07);
  position: relative;
  z-index: 10;
  border-bottom: 0;
  padding-bottom: 0;
}
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem 0.3rem 2rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-logo img {
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(34,60,80,0.10);
  object-fit: contain;
}
.brand-name {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 2px 8px rgba(34,60,80,0.09);
}
.top-bar nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1.3rem;
  font-weight: bold;
  font-size: 1.12rem;
  transition: opacity 0.12s;
  border-radius: 1.1rem;
  padding: 0.25rem 0.9rem;
}
.top-bar nav a:hover {
  background: rgba(255,255,255,0.13);
  opacity: 0.93;
}
.header-wave {
  position: relative;
  width: 100%;
  height: 45px;
  overflow: hidden;
  display: block;
  margin-top: 0.2rem;
}
.header-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 45px;
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .top-bar {
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.1rem 0.8rem 0 0.8rem;
    align-items: flex-start;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .header-wave {
    height: 23px;
    min-height: 23px;
  }
  .top-bar nav {
    width: 100%;
    text-align: left;
    margin-top: 0.3rem;
  }
  .top-bar nav a {
    margin: 0 0.5rem 0 0;
    font-size: 1rem;
    padding: 0.19rem 0.6rem;
  }
}
