/* Reset & Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

header {
  background-color: #111;
  color: white;
  padding: 20px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 6px;
}



header h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  color:#f8f9fa;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #00e6a8;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 1.8rem;
  color: #00b894;
  margin-bottom: 20px;
  border-bottom: 2px solid #00b894;
  padding-bottom: 10px;
}

section p {
  margin-bottom: 15px;
}

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
}

.button {
  display: inline-block;
  background-color: #00b894;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.button:hover {
  background-color: #00e6a8;
}

.hero {
  background-color: #00b894;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {}
  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 40px 15px;
  }
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px; /* ou ajuste selon la taille de ton logo */
  width: auto;
}


nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

nav li {
  display: inline-block;
}