body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #fda56a, #7e9eff); /* Dégradé futuriste */
    color: #333;
}

header {
    background-color: #000000;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    border-bottom: 3px solid #ff6600; /* Bordure futuriste */
}

.service-description {
    margin: 50px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.2em;
}

footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #7e9eff; /* Couleur bleue futuriste au survol */
}
