/* Fond sombre semi-transparent pour les widgets */
service, .card {
    background-color: rgba(0, 0, 0, 0.6); /* noir transparent à 60% */
    border-radius: 10px; /* coins arrondis */
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5); /* ombre pour détacher du fond */
    color: #fff; /* texte blanc pour contraste */
    margin-bottom: 20px; /* espace entre widgets */
}
