:root {
  --brand: #0d6efd;
}

.section-wrap {
  padding: 3rem 0;
}

/* Bloc de description */
.description-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: justify;
  line-height: 1.7;
  color: #333;
}

/* Objectifs */
.objectives-box {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.objectives-box h5 {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.objective-item {
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  color: #333;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.objective-item:hover {
  background: #eef3ff;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.1);
}

/* Valeurs */
.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  border-radius: 10px;
  padding: 2.5rem 1rem;
  color: #212529;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

/* Couleurs pastel */
.value-respect {
  background: #d4edda;
  color: #155724;
}

.value-engagement {
  background: #cfe2ff;
  color: #084298;
}

.value-transparence {
  background: #fff3cd;
  color: #856404;
}

.value-solidarite {
  background: #f8d7da;
  color: #842029;
}

@media (max-width: 576px) {
  .description-card {
    padding: 1.2rem;
  }

  .value-card {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

[dir="rtl"] .objectives-box {
  text-align: right;
}
