
:root{
  --maxw:1100px;
  --accent:#d00000;
  --bg:#0b0b0b;
  --muted:#bdbdbd;
  --card:#ffffff;
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui, -apple-system, "Segoe UI", Roboto, Arial; margin:0; color:#111; background:#fff; line-height:1.5}
.container{max-width:var(--maxw); margin:0 auto; padding:32px}
.site-header{background:white; box-shadow:0 1px 6px rgba(0,0,0,0.06)}
.header-inner{display:flex; align-items:center; justify-content:space-between}
.logo-img{height:100px}
.nav a{margin-left:20px; color:var(--muted); text-decoration:none; font-weight:600}
.hero{position:relative; padding:120px 0; color:white; background-image:url('og.jpg'); background-size:cover; background-position:center;}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(208,0,0,0.45), rgba(0,0,0,0.55));}
.hero-inner{position:relative; z-index:1; max-width:900px}
.hero h1{font-size:44px; margin:0 0 12px 0}
.cta{display:inline-block; margin-top:14px; padding:12px 20px; background:var(--accent); color:white; text-decoration:none; border-radius:8px; font-weight:700}

.services{padding-top:40px}
.cards{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; margin-top:20px}
.card{background:#fff; padding:22px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06)}

.about p{color:#222; margin-bottom:12px; max-width:900px}

.team-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; margin-top:18px}
.member{background:#fff; padding:18px; border-radius:12px; text-align:center; box-shadow:0 8px 24px rgba(0,0,0,0.06)}
.member-img{width:140px; height:140px; object-fit:cover; border-radius:50%; margin:0 auto 12px; display:block}
.role{font-weight:700; color:var(--muted); margin-top:6px}
.bio{color:#555; font-size:14px; margin-top:8px}

.contact.wide-bg{background:#111; color:white; padding:48px 0}
.form-container{max-width:900px; margin:0 auto}
.fullform{display:block}
.fields-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.fullform input, .fullform textarea{width:100%; padding:12px; border-radius:8px; border:1px solid #ddd; margin-top:6px}
.fullform button{margin-top:12px; padding:14px 20px; background:var(--accent); color:white; border:0; border-radius:8px; font-weight:700}

.site-footer{padding:24px 0; color:var(--muted); text-align:center; background:#fff}
@media (max-width:800px){
  .fields-grid{grid-template-columns:1fr}
  .hero h1{font-size:28px}
  .logo-img{height:44px}
}
