/* Style pour la section Numéros d'urgence */
.emergency-section {
  background-color: #f8f9fa;
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.emergency-section h2 {
  text-align: center;
  color: #d9534f; /* Rouge d'urgence */
  margin-bottom: 30px;
  font-size: 2rem;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.emergency-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emergency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.emergency-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.emergency-number {
  font-size: 2rem;
  font-weight: bold;
  color: #d9534f; /* Rouge pour les numéros */
  margin: 10px 0;
}

.emergency-description {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .emergency-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .emergency-grid {
    grid-template-columns: 1fr;
  }
}