/* vorteile.css */
.vorteile-box {
    margin: 1.5rem 0;
    padding: 1.8rem 2rem;
    font-family: inherit;
    color: inherit;
    border: 1px solid rgba(99, 156, 31, 0.35);
    background-color: rgba(99, 156, 31, 0.02);
    box-shadow: none;
    width: 100%;
    max-width: none;
    border-radius: 16px;
}

.original-format {
    line-height: inherit;
}

.vorteile-titel {
    color: #639c1f;
    font-size: inherit;
    font-weight: bold;
    margin: 0 0 1rem 0; /* Reduziert von 1.25rem auf 1rem */
    padding: 0;
    font-family: inherit;
    line-height: inherit;
}

.vorteile-liste {
    list-style: none;
    margin: 0 0 1rem 0; /* Reduziert von 1.5rem auf 1rem */
    padding: 0;
}

.vorteile-liste li {
    margin: 0 0 0.8rem 0; /* Reduziert von 1rem auf 0.8rem */
    padding: 0 0 0 2.2rem;
    line-height: 1.6;
    font-size: inherit;
    position: relative;
}

.vorteile-liste li:last-child {
    margin-bottom: 0; /* Letztes Element braucht keinen unteren Abstand */
}

.vorteile-liste li::before {
    content: "✓";
    color: #639c1f;
    font-size: 1.4rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -0.1rem;
}

.vorteile-liste b {
    color: #639c1f;
    font-weight: bold;
}

/* Zielgruppe Section - Kompakter */
.zielgruppe-section {
    margin: 0.5rem 0 1rem 0; /* Oben reduziert von 1.5rem auf 0.5rem, unten von 1.25rem auf 1rem */
    padding: 0.75rem 0 0.5rem 0; /* Oben reduziert von 1rem auf 0.75rem */
    border-top: 1px dashed rgba(99, 156, 31, 0.3);
}

.zielgruppe-titel {
    color: #639c1f;
    font-size: inherit;
    font-weight: 600;
    margin: 0 0 0.6rem 0; /* Reduziert von 0.9rem auf 0.6rem */
    padding: 0;
    font-family: inherit;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.zielgruppe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem; /* Reduziert von 0.8rem auf 0.6rem */
    align-items: center;
}

.zielgruppe-tag {
    background-color: rgba(99, 156, 31, 0.08);
    color: #2c3e50;
    padding: 0.4rem 1rem; /* Reduziert von 0.5rem 1.2rem auf 0.4rem 1rem */
    border-radius: 40px;
    font-size: inherit;
    font-weight: 500;
    border: 1px solid rgba(99, 156, 31, 0.25);
    transition: all 0.2s ease;
    display: inline-block;
}

.zielgruppe-tag:hover {
    background-color: rgba(99, 156, 31, 0.15);
    border-color: rgba(99, 156, 31, 0.4);
    transform: translateY(-1px);
}

.vorteile-fazit {
    margin: 1rem 0 0 0; /* Reduziert von 1.5rem auf 1rem */
    padding: 0.75rem 0 0 0; /* Reduziert von 1rem auf 0.75rem */
    font-size: inherit;
    line-height: 1.6;
    color: inherit;
    border-top: 1px solid rgba(99, 156, 31, 0.25);
}

.vorteile-fazit b {
    color: #639c1f;
    font-weight: bold;
}

.vorteile-box * {
    box-sizing: border-box;
}

.vorteile-liste, 
.vorteile-liste li {
    list-style-type: none;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
    .vorteile-box {
        padding: 1.25rem 1.25rem;
        border-radius: 12px;
    }
    
    .vorteile-liste li {
        padding-left: 2rem;
    }
    
    .zielgruppe-tags {
        gap: 0.5rem;
    }
    
    .zielgruppe-tag {
        padding: 0.35rem 0.9rem;
    }
}

/* Alternative Darstellung als einfache Liste */
.zielgruppe-section.simple-list .zielgruppe-tags {
    display: block;
}

.zielgruppe-section.simple-list .zielgruppe-tag {
    display: inline-block;
    background: none;
    border: none;
    padding: 0.2rem 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0;
    border-left: 3px solid #639c1f;
}