/* Accept For Healing - minimal modern theme (Bootstrap enhanced) */
:root{ --brand:#2a7f7a; --brand2:#0c3b4a; }
body{ font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.navbar-brand span{ color: var(--brand); font-weight: 700; }
.hero{ background: linear-gradient(135deg, rgba(42,127,122,.12), rgba(12,59,74,.10)); border-radius: 1.25rem; }
.card{ border-radius: 1rem; }
.footer{ color:#7a7a7a; }
.lang-pill{ font-size:.85rem; }

.eco-sponsors{
  display:flex;
  align-items:center;
  gap:14px;
  overflow:auto;
  padding:14px 8px;
  border-radius:16px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.06);
}
.eco-sponsor{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  height:64px;
  padding:10px 14px;
  border-radius:14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 24px rgba(16,24,40,.06);
}
.eco-sponsor img{
  max-height:44px;
  max-width:120px;
  object-fit:contain;
  filter: grayscale(100%);
  opacity:.85;
  transition: all .2s ease;
}
.eco-sponsor:hover img{
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}
