/* Frontend CSS mit höherer Spezifität */
.services-overview .service-card {
    display: block !important;
    text-decoration: none !important;
    background: #fff !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: all 0.2s ease !important;
}

.services-overview .service-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    text-decoration: none !important;
    gap: 1rem !important; /* Konsistenter Abstand zwischen Icon und Text */
}

.services-overview .service-icon {
    font-size: 2rem !important;
    text-decoration: none !important;
    line-height: 1 !important;
    flex-shrink: 0 !important; /* Verhindert Schrumpfen des Icons */
    width: 2rem !important; /* Feste Breite für konsistente Ausrichtung */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.services-overview .service-title {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    margin: 0 !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    /* Title color wird dynamisch gesetzt */
}

.services-overview .service-list {
    text-decoration: none !important;
    /* Text color wird dynamisch gesetzt */
}

.services-overview .service-list li {
    display: flex !important;
    align-items: start !important;
    margin-bottom: 0.75rem !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    position: relative !important;
    padding-left: 1.5rem !important;
    /* Text color wird dynamisch gesetzt */
}

.services-overview .service-list li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    margin-right: 0.75rem !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* Responsive Grid */
.services-overview .services-grid {
    display: grid !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
}

/* Verhindere jegliche Unterstreichungen */
.services-overview .service-card *,
.services-overview .service-card *:hover,
.services-overview .service-card *:focus,
.services-overview .service-card *:active {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Zusätzliche Reset-Styles */
.services-overview a,
.services-overview a:hover,
.services-overview a:focus,
.services-overview a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}