@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f0ede6;
  min-height: 100vh;
  padding: 24px 32px;
}

/*Barre de navigation*/
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 24px;
}
.logo {
  height: 120px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 0.97rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2e6e4f;
}

/*  Conteneur principal  */
.guidelines-container {
  background-color: #f5f5f5;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 32px;
}

/*  Illustration  */
.illustration {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Titre  */
.guidelines-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

/* Liste des règles  */
.guidelines-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.guideline-item i {
  color: #2e6e4f;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/*  Bouton  */
.btn-start {
  display: block;
  width: 100%;
  background-color: #2e6e4f;
  color: #fff;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn-start:hover {
  background-color: #235a40;
}

/*  Responsive  */
@media (max-width: 480px) {
  nav {
    padding: 0 0 55px;
  }
  .logo {
    height: 80px;
  }
  .guidelines-container {
    padding: 32px 24px;
    gap: 24px;
  }

  .guidelines-title {
    font-size: 1.6rem;
  }

  .guideline-item {
    font-size: 0.92rem;
  }
}



