.presentation-service {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 0; 
  
  position: absolute;
  top: 0;
  left: -10em;
  width: 120%;
  height: 100%;
  
  padding: 0; 
  box-shadow: none; 
}

.service-media {
  width: 100%;
  height: 100%;
  border-radius: 0; 
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-details {
  padding: 50px; 
  box-sizing: border-box;
}

.service-texte {
  display: flex;
  position: absolute;
  bottom: 25%;
  margin: 20px 0;
  padding-right: 10px;
}

.service-texte p {
  width: 120%;
  font-size: 120%;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 15px;
}

.apple {
  font-size: 17px;
  color: white;
  display: grid;
  justify-content: center;
  line-height: 1.9em;
}

.recup {
  bottom: -0px;
  font-size: 85%;
  line-height: 1.3;
}

.devis {
  position: absolute;
  top: 6em; 
  left: 2em;
  width: 18%; 
  height: auto;
}

.devis img {
  width: 100%;
  height: auto;
  display: block;
  /* Optionnel : ajoute une ombre portée pour détacher le devis du PC */
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1000px) {
  .service-texte {
    width: 50%;
    bottom: 10%;
    left: 35%;
    padding-right: 10px;
  }
  
  .service-texte p {
    width: 100%;
    font-size: 1.4em;
    line-height: 1.9;
    margin-bottom: 15px;
  }
  
  .service-media img {
    position:absolute;
    top: -30em;
    left: 30%;
    width: 50%;
  }
  
  .devis {
    position: absolute;
    top: 30%; 
    left: 13em;
    width: 30%; 
  }
  
  .devis img {
    width: 100%;
  }
  
  .recup {
    bottom: -0px;
    font-size: 75%;
    line-height: 1.3;
  }
  
  .phone img{
    position: absolute;
    top: -20%;
    left: 35%;
    width: 45%;
  }

  .d-phone  {
    position: absolute;
    top: 5%;
  }
  
  .d-phone img {
    width: 300px;
  }

  .s-apple img{
    width: 600px;
  }

  .d-apple {
    position: relative;
    top: 40%;
  }

  .d-apple img {
    width: 300px;
  }

  .txt-apple {
    position: relative;
    font-size: 1.5em;
    top: 50%;
    left: -50%;
    width: 130%;
  }

  
  .txt-imp {
    position: absolute;
    top: 50%;
    width: 50%;
  }

}

@media (max-width: 768px) {
  .presentation-service {
    grid-template-columns: 1fr; 
    height: 75%;
    top: 48%;
    gap: 20px;
    overflow-y: auto; 
  }
  
  .service-media {
    height: 200px; 
  }
}