/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
  padding: 20px;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
nav a {
  color: #4ea1f3;
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}

/* Section Titles */
h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

/*Paragraphes*/
p {
  margin-bottom: 20px;
  max-width: 700px;
}

/* Links */
a {
  color: #4ea1f3;
}

/* Footer */
footer {
  margin-top: 50px;
  text-align: left;
  font-size: 14px;
  color: #888;
}
