.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 40px 20px;
}
.service {
    flex-basis: 30%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    margin: 10px;
    padding: 15px;
}
.service img {
    width: 100%;
    border-bottom: 2px solid orange;
}
.service h3 {
    margin: 10px 0;
}
.service p {
    padding: 0 10px 10px;
}
.drone-services {
    width: 60%; /* Réduire la largeur pour ne pas occuper tout l'écran */
    margin: 20px auto; /* Centrer la div horizontalement */
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}
.drone-services img {
    width: 80%;
    border-bottom: 2px solid orange;
    border-radius: 10px;
    margin-bottom: 20px;
}
.drone-services h3 {
    margin: 10px 0;
}
.drone-services p {
    padding: 0 10px 10px;
}
