<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modern Services Section Styles - Kompletter Neuansatz */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 10px;
    width: 100%;
}

.service-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 5px;
    border: 1px solid rgba(78, 177, 203, 0.1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-item-header {
    padding: 25px 25px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px dashed rgba(78, 177, 203, 0.2);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-item-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.service-item-body {
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-item-body p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

/* Feature-Tags komplett neu */
.service-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-tag {
    background-color: rgba(78, 177, 203, 0.1);
    color: var(--primary-dark);
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: visible;
    word-break: keep-all;
    white-space: normal;
    min-height: 36px;
}

.feature-tag i {
    color: var(--success);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.service-button:hover {
    background-color: var(--primary-dark);
    transform: translateX(5px);
    color: white;
}

.service-button i {
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(3px);
}

/* Tablet Ansicht */
@media (max-width: 992px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 15px; /* Mehr Abstand zum Rand */
    }
    
    .service-item {
        margin: 10px; /* Mehr Abstand zum Rand, damit Schatten sichtbar ist */
    }
    
    .service-item-header {
        padding: 20px 20px 12px;
    }
    
    .service-item-body {
        padding: 15px 20px 20px;
    }
    
    .service-icon-wrapper {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Kleine MobilgerÃĪte */
@media (max-width: 576px) {
    .services-modern-grid {
        padding: 10px;
    }
    
    .service-item {
        margin: 10px 15px; /* Noch mehr seitlichen Abstand fÃžr kleine GerÃĪte */
    }
    
    .feature-tag {
        font-size: 0.75rem;
    }
    
    .service-features-list {
        gap: 8px;
    }
}
</pre></body></html>