.org-card {
  background: var(--light-card, #f8f9fa);
  color: #0a0a0a;
  border-radius: var(--border-radius, 12px);
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.org-card h2,
.org-card li,
.org-card p,
.org-card strong {
  color: #0a0a0a;
}
/* Thème clair adapté */
body {
  color: #ffffff;
}

h1, h2 {
  font-weight: 600;
}

.bg-light {
  background-color: var(--light-card) !important;
  color: var(--text-dark) !important;
}

h1 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color, rgba(0,0,0,0.1));
}

h3 {
  color: #ffffff;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

ul, ol {
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

ul li, ol li {
  margin-bottom: 0.75rem;
}

strong {
  color: var(--primary);
}

.text-muted {
  color: rgba(255,255,255,0.8) !important;
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius, 8px);
}

.helpline-box {
  background: var(--light-card, #f8f9fa);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius, 8px);
  padding: 1.5rem;
  margin: 2rem 0;
  color: #0a0a0a;
}

.helpline-box h3,
.helpline-box p,
.helpline-box strong,
.helpline-box .text-muted {
  color: #0a0a0a !important;
}