/* Анимация при наведении на пункт аккордеона */
.uc-accordion .t-col {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.uc-accordion .t-col:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
