.faq_icons .fa{
	font-size: 20px;
}
html { scroll-behavior: smooth; }
.faq-question {
    position: relative;
    cursor: pointer;
}
.faq-question .arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}
.faq-question.collapsed .arrow {
    transform: translateY(-50%) rotate(90deg);
}
.category-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.3rem;
}
.category-buttons {
    margin-bottom: 2rem;
}
.category-buttons .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
.faq-content .card-header.collapsed{
    background-color: transparent;
    color: #000;
    font-weight: bold;
}
.faq-content .card-header:hover{
    background-color: #2b4693;
    color: #FFFFFF;
}