body {
    font-family: inika, 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #2C2C54;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero-header {
  background: linear-gradient(135deg, #d4f7e3, #b4eacb);
  color: #2C2C54;
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
  transform: rotate(30deg);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-logo {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #2C2C54;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #3a3a3a;
}



/* ==== MAIN & SECTIONS ==== */
main {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: #2C2C54;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #00a86b;
  margin-top: 8px;
  border-radius: 2px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 28px;
  font-size: 1.05rem;
  line-height: 1.6;
}

ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 2px;
  color: #00a86b;
  font-weight: bold;
}

/* ==== CALL TO ACTION ==== */
.section-call {
  background-color: #f3fbf7;
  border-left: 5px solid #00a86b;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}

.section-call p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #00a86b;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #00895a;
  transform: scale(1.03);
}

/* ==== RETOUR ACCUEIL ==== */
.section-home {
  text-align: center;
  margin-top: 30px;
}

#go-home {
  padding: 14px 32px;
  font-size: 1.05rem;
  border: 2px solid #00cc88;
  background: linear-gradient(145deg, #ffffff, #e6fff5);
  color: #00cc88;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(0, 204, 136, 0.7);
  transition: all 0.3s ease;
  animation: pulse-bright 1.8s infinite ease-in-out;
}

#go-home:hover {
  background: #00cc88;
  color: #fff;
  transform: scale(1.08) rotate(-0.5deg);
  box-shadow: 0 0 20px rgba(0, 204, 136, 0.9);
}

@keyframes pulse-bright {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 204, 136, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 204, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 204, 136, 0);
  }
}



/* ==== MODE D’EMPLOI ==== */
.section-mode-emploi ul {
  padding-left: 0;
}

.section-mode-emploi li {
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
}

.section-mode-emploi li::before {
  content: "👉";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.1rem;
}

.section-mode-emploi a {
  color: #007e55;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.section-mode-emploi a:hover {
  color: #00a86b;
  text-decoration: underline;
}

/* ==== FOOTER ==== */
footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 30px 0;
  font-size: 0.95rem;
  color: #777;
  border-top: 1px solid #ddd;
}

@media (max-width: 760px) {
  .hero-header {
    padding: 48px 18px 42px;
  }

  .hero-logo {
    width: 72px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  main {
    width: 100%;
    padding: 38px 18px 48px;
  }

  main section {
    margin-bottom: 48px;
  }

  main h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .section-call {
    padding: 28px 18px;
  }

  .cta-button,
  #go-home {
    width: 100%;
    max-width: 360px;
    min-height: 48px;
    padding: 12px 18px;
  }
}
