/* Style général de la scrollbar */
::-webkit-scrollbar {
  width: 25px; /* Largeur verticale */
  height: 10px; /* Hauteur horizontale (si besoin) */
}

/* Couleur de fond (la piste de la scrollbar) */
::-webkit-scrollbar-track {
  background: #222; 
}

/* Couleur de la barre elle-même */
::-webkit-scrollbar-thumb {
  background: #3498db;  /* Bleu par exemple */
}

/* Au survol */
::-webkit-scrollbar-thumb:hover {
  background: #1c587f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section {
  padding: 60px 20px;
  background: #131313;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  color: #00bfff;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-devis {
  display: inline-block;
  background: #00bfff;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.btn-devis:hover {
  background: #0099cc;
  transform: scale(1.05);
}

.packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.pack {
  background: white;
  color: #000;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px #0099cc;
  border: 1px solid #e6f7ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

ul {
  list-style: none;         /* Supprime les puces */
  padding-left: 0;          /* Supprime le retrait à gauche */
  text-align: left;         /* Aligne le texte à gauche */
  margin: 20px 0;
}

ul li {
  margin-bottom: 8px;       /* Espacement entre les lignes */
}


.pack:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px #00bfff;
}

.pack h3 {
  font-size: 1.4rem;
  color: #00bfff;
  margin-bottom: 10px;
  font-weight: 600;
}

.pack p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
