.lista-testi-accordion .accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lista-testi-accordion .accordion-header {
    cursor: pointer;
    padding: 20px;
    background: white;
    color: var(--e-global-color-text, #333);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.lista-testi-accordion .accordion-header:hover {
    filter: brightness(0.95);
}

.lista-testi-accordion .accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.lista-testi-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: white;
    border: 1px solid #eee;
    border-top: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lista-testi-accordion .accordion-content.active {
    max-height: 300px;
    padding: 20px;
    overflow: auto;
}

.lista-testi-accordion .accordion-icon {
    font-weight: bold;
    font-size: 20px;
}