:root{
  --accent:#0b6b5b;
  
  --glass: rgba(255,255,255,0.9);
  --maxwidth:1100px;
  --card-radius:12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  color: white;
  min-height:100vh;
  background-image: url('backgroundimage.jpeg');
  background-size:cover;
  background-position:center;
  
}

/* dim background for readability */
.bg-overlay{
  position:fixed;
  inset:0;
  background:var(--bg-overlay);
  z-index:0;
}

/* header */
.site-header{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  max-width:var(--maxwidth);
  margin:0 auto;
}
.logo-wrap{display:flex;align-items:center;gap:12px}
.logo{width:64px;height:64px;object-fit:contain;border-radius:8px;background:white;padding:6px}
.brand h1{margin:0;font-size:18px;color:white}
.brand p{margin:0;font-size:12px;color:#e6e6e6}

.nav a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  opacity:0.95;
}

.mission



.nav a.active, .nav a:hover{background:rgba(255,255,255,0.12)}
.top{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;background:#0b6b5b;color:#fff}
.top img{width:56px}
.nav a{color:#fff;margin-left:12px;text-decoration:none;padding:8px;border-radius:8px}
.nav a.active, .nav a:hover{background:rgba(255,255,255,0.12)}

.wrap{max-width:1100px;margin:20px auto;padding:18px;background:transparent;}
.about-hero{display:flex;gap:20px;align-items:center}
.about-hero .text{flex:1}
.about-hero .photo img{width:300px;height:auto;border-radius:10px}


.mission, .team-list{margin-top:18px}
.grid{display:flex;gap:12px;flex-wrap:wrap}
.grid figure{width:160px;text-align:center}
.grid img{width:100%;height:200px;object-fit:cover;border-radius:8px}
.grid figcaption span{font-size:13px;color:white}
