/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #1a1a1a; /* Couleur sombre inspirée de lenew.ma */
  color: #fff;
  padding: 20px 0;
}

header .logo img {
  width: 150px; /* Ajustez la taille du logo selon vos besoins */
  display: block;
  margin: 0 auto;
}

header h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-top: 10px;
}

header .highlight {
  color: #e67e22; /* Couleur d'accent inspirée de lenew.ma */
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #e67e22;
}

/* Main Content */
main {
  padding: 40px 0;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 2rem;
  color: #1a1a1a; /* Couleur sombre pour les titres */
  margin-bottom: 20px;
  text-align: center;
}

p, ul {
  font-size: 1.1rem;
  color: #555;
}

ul {
  list-style: inside;
}

ul li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #1a1a1a; /* Couleur sombre pour le footer */
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #e67e22; /* Couleur d'accent pour les liens */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
