/* Vorteile Block - Frontend Styling */
.vorteile-block {
    background-color: #e6f4ec;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #28a745;
}

.vorteile-title {
    margin: 0 0 15px 0;
    color: #155724;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vorteile-title i {
    color: #28a745;
    font-size: 1.1em;
}

.vorteile-content {
    margin: 0;
}

.vorteile-content ul {
    margin: 0;
    padding-left: 20px;
}

.vorteile-content li {
    margin-bottom: 8px;
    color: #155724;
    position: relative;
    list-style: none;
    padding-left: 1.6em;
}

.vorteile-content li::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vorteile-block {
        padding: 15px;
        margin: 15px 0;
    }
    
    .vorteile-title {
        font-size: 1.1em;
    }
} 