.sidebar-link {
    @apply flex items-center gap-1.5 text-gray-600 hover:text-[#0048B6] transition-all duration-300 text-sm font-medium px-3 py-2 rounded-lg hover:bg-[#0048B6]/5 relative group;
}

.sidebar-link .icon {
    @apply w-3.5 h-3.5 opacity-60 group-hover:opacity-100;
}

.sidebar-link.active {
    @apply text-[#0048B6] bg-[#0048B6]/5;
}

.sidebar-link.active .icon {
    @apply opacity-100;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.faq-content {
    display: none;
}

.faq-content.open {
    display: block;
}

.faq-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.faq-toggle.open .fa-chevron-down {
    transform: rotate(180deg);
}