/* ---- Kundenbewertungen ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 50px; }
.testimonial-card {
    background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    display: flex; flex-direction: column; gap: 10px;
}
.testimonial-stars { color: #f5b301; font-size: 18px; letter-spacing: 2px; }
.testimonial-message { font-size: 14.5px; line-height: 1.6; color: #333; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 14px; color: #555; margin-top: auto; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto 50px; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 10px; box-shadow: 0 1px 8px rgba(0,0,0,0.06); overflow: hidden; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center; padding: 16px 20px;
    cursor: pointer; font-weight: 700; font-size: 15px; color: #222;
}
.faq-question::after { content: "+"; font-size: 22px; font-weight: 400; color: #888; transition: transform 0.2s; margin-left: 12px; }
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; padding: 0 20px; font-size: 14.5px; line-height: 1.6; color: #444; }
.faq-item.is-open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
