.ticker-scroll {
    animation: ticker 20s linear infinite;
}
@keyframes ticker {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.count-up {
    transition: all 0.3s ease;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-content.open {
    max-height: 500px;
}
