/* ── ÜBER UNS ─────────────────────────────────────────── */
#ueber-uns {
  background: #f8fafc;
  min-height: calc(100vh - 60px);
  padding-top: 120px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 50px;
}
.about-text p { font-size: 16px; color: #475569; line-height: 1.75; margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-accent { font-weight: 600; color: #2563eb; }
.about-card {
  background: white; border: 1px solid #e2e8f0; border-radius: 20px;
  padding: 36px; box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.about-stat { text-align: center; padding: 20px 0; border-bottom: 1px solid #f1f5f9; }
.about-stat:last-child  { border-bottom: none; padding-bottom: 0; }
.about-stat:first-child { padding-top: 0; }
.stat-num   { font-size: 36px; font-weight: 700; color: #2563eb; line-height: 1; }
.stat-label { font-size: 13px; color: #64748b; margin-top: 5px; }

@media (max-width: 820px) {
  #ueber-uns { padding-top: 100px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 32px; }
}
@media (max-width: 480px) {
  .about-card { padding: 24px 20px; }
  .stat-num { font-size: 30px; }
}
