/* Logo-Größe */
header .logo {
    height: 120px; /* doppelte Höhe wie vorher */
}

/* Abstand zwischen Logo und Text */
header > div {
    margin-left: 30px;
}

/* Feature-Card Bilder */
.feature-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Card-Texte zentrieren */
.card-body p {
    margin-bottom: 0.5rem;
}

/* Endkunden-Testimonials */
.card p {
    font-style: italic;
    color: #333;
}

/* Call-to-Action */
section.bg-success h2 {
    color: white;
    font-weight: 600;
}
section.bg-success .btn-lg {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Liste der Zielgruppen */
.list-group-item {
    font-size: 1rem;
    padding: 10px 15px;
    text-align: center;
}

/* Responsive kleinere Anpassungen */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    header > div {
        margin-left: 0;
        margin-top: 10px;
    }
    nav {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 10px;
    }
}

