/* help-style.css */
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6; /* Couleur de fond douce */
  margin: 0;
  padding: 20px;
}

.help-container {
  max-width: 800px;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.help-header {
  text-align: center;
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.help-header h1 {
  color: #2d3748;
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.help-header p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.back-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ebf8ff;
  color: #3182ce;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.back-link:hover {
  background-color: #bee3f8;
}

.help-section {
  margin-bottom: 35px;
}

.help-section h2 {
  color: #2b6cb0;
  border-left: 4px solid #4299e1;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.help-section p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.help-section ul {
  background: #f7fafc;
  padding: 20px 20px 20px 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.help-section li {
  margin-bottom: 12px;
}

.help-section li:last-child {
  margin-bottom: 0;
}

.data-list ul {
  background: transparent;
  border: none;
  padding: 10px 0 0 20px;
  margin: 0;
}
