#values{
    min-height: 60vh;
}
:root{
  --brand: #1d2f6f;
  --accent: #ff6600;
  --text: #121212;
  --muted: #666;
  --bg: #f5f7fb;
  --card: #ffffff;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --radius: 16px;
}
body{
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}
.section{
  padding: 50px 0;
}
.section.alt{
  background: #fff;
}

.center{
  text-align: center;
}
.subtext{
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 26px;
}
.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.value-card{
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}
.value-card h3{
  margin: 0 0 10px;
  color: var(--brand);
}
.value-card p{
  margin: 0;
  color: #222;
}
.footer{
  padding: 18px 0;
  background: #0f1d4e;
  color: rgba(255,255,255,.9);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.muted{ opacity: .85; }
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .founder-grid{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: 1fr; }
  .hero-text h1{ font-size: 32px; }
}