
/* 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;
}

*{
    font-family: poppins, sans-serif;
    background-color: #1e1e1e;
}

.service-section {
  padding: 60px 10%;
  background-color: #1e1e1e;
  color: #eaeaea;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00bfff;
  text-align: center;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.service-text {
  flex: 1 1 50%;
}

.service-text ul {
  list-style: none;
  padding-left: 0;
}

.service-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5em;
}

.service-text ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #00bfff;
}

.call-to-action {
  margin-top: 20px;
  font-style: italic;
  font-weight: 500;
}

.service-image {
  flex: 1 1 40%;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.bnt{
    display: flex;
    gap: 20px;
}

button{
  font-size: 15px;
  font-weight: bold;
  background: #00bfff;
  padding: 15px 15px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: .5s;
}

button:hover{
  box-shadow: 0 0 20px #00bfff;
}






#boutonretour{
    font-size: 15px;
    font-weight: bold;
    background: transparent;
    color: #00bfff;
    padding: 15px 15px;
    border: 1.5px solid #00bfff;
    border-radius: 15px;
    cursor: pointer;
    transition: .4s;
}
