
/* 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;
}

body{
    background-color: #1e1e1e;
}

/* SECTION GRAPHIC DESIGN */
.section {
  padding: 60px 20px;
  background: #1e1e1e;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  height: 100%;
}

.section-title {
  font-size: 2.2rem;
  color: #00bfff;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* BOUTON DEVIS */
.btn-devis {
  display: inline-block;
  background: #00bfff;
  color: #1e1e1e;
  padding: 12px 25px;
  border-radius: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-devis:hover {
  background: #0099cc;
  box-shadow: 0 4px 10px #0099cc;
  transform: scale(1.05);
}

/* PACKS */
.packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.pack {
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e6f7ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 191, 255, 0.15);
}

.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;
}

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 */
}
