/* Transparente Karten mit Blur-Effekt */
.services-item-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effekt */
.services-item-card:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
