/* 0071 Custom Styles - Electric Blue Theme */
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.counter { font-variant-numeric: tabular-nums; }
.faq-toggle i { transition: transform 0.3s ease; }
.faq-toggle.active i { transform: rotate(180deg); }
.faq-answer { display: none; }
.faq-answer.show { display: block; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.faq-filter-btn.active { background-color: #3b82f6 !important; color: white !important; }
.faq-item.hidden { display: none; }

@media (max-width: 768px) {
    #mobileMenu.show { display: block !important; }
}

/* Navbar scroll effect */
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
