.bewertungen{
    padding:80px 0;
    background:linear-gradient(180deg,#f9fafb 0%,#ffffff 100%);
}

.bewertungen-header{
    text-align:center;
    margin-bottom:40px;
    font-size:18px;
    color:#6b7280;
}

.bewertungen-header strong{
    display:block;
    font-size:30px;
    color:#6f9a40;
    margin-bottom:8px;
    line-height:1.2;
}

.bewertungen-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-bottom:30px;
}

.bewertung{
    background:#ffffff;
    border-radius:20px;
    padding:28px;
    box-shadow:0 14px 40px rgba(15,23,42,.08);
    transition:transform .25s ease, box-shadow .25s ease;
}

.bewertung:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(15,23,42,.12);
}

.bewertung p{
    margin-bottom:18px;
    font-size:15px;
    line-height:1.75;
    color:#374151;
}

.bewertung strong{
    color:#111827;
    font-size:15px;
}

.bewertungen-badges{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin:20px 0 30px;
}

.bewertungen-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(111,154,64,.10);
    border:1px solid rgba(111,154,64,.18);
    color:#4c6d28;
    font-size:14px;
    font-weight:700;
    line-height:1;
}

.bewertungen-cta{
    text-align:center;
    margin-top:10px;
}

@media (max-width: 640px){
    .bewertungen{
        padding:60px 0;
    }

    .bewertungen-header strong{
        font-size:24px;
    }

    .bewertung{
        padding:22px;
    }
}