/* Haupt-Styles für das Widget */
.leistungen-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}

.leistungen-grid .header {
    text-align: center;
    margin-bottom: 70px;
}

.leistungen-grid .title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    color: transparent;
}

.leistungen-grid .subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.leistungen-grid .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 380px;
}

.service-card .card-header {
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.service-card .card-title {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 10px;
    font-size: 1rem;
}

.service-card .card-body {
    padding: 20px;
}

.service-card .card-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
