.section {
  background: var(--vert-fonce);
  padding: 64px 24px;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.titre {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blanc);
}

.texte {
  font-size: 16px;
  color: var(--blanc);
  opacity: 0.9;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact {
  color: var(--blanc) !important;
  border-color: var(--blanc) !important;
  background: transparent !important;
}

.contact:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

@media (min-width: 640px) {
  .actions {
    flex-direction: row;
    justify-content: center;
  }
}
