/* Ausrichtung von Icon und Text nebeneinander mittig */
.features span {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* radical-icons.css: Eigene Icon-Klassen mit PNGs aus img/icons/ */

/* Beispiel für weitere Icons: */
.radical-speedometer {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/speedometer.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

.radical-car {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/car.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}


.radical-tuev {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/tuev.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

.radical-cloud {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/cloud.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

.radical-cloud-service {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/cloud-service.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

.radical-safety {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/safety.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

.radical-ecu {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/ecu.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

.radical-gear {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/icons/gear.png') no-repeat center center;
    background-size: 20px 20px;
    background-color: #F47C00;
    border-radius: 50%;
}

/* Weitere Icons nach Bedarf ergänzen */
