.faq-categories {
    margin-bottom: 20px;
}

.faq-category {
    display: inline-block;
    margin-right: 10px;
    padding: 5px !important;
    border: none !important;
    cursor: pointer;
    border-radius: 5px !important;
    font-family: 'Century Gothic', Arial, sans-serif;
    color: black !important;
    font-size: 1em !important;
}

.faq-category:hover {
    color: black !important;
    border: none !important;
}

.faq-category.active {
    border: none !important;
}

.faq-item {
    display: none;
    margin-bottom: 10px;
    font-family: 'Century Gothic', Arial, sans-serif;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.active {
    display: block;
}

.faq-title {
    cursor: pointer;
    background-color: rgba(241, 241, 241, 0.01);
    padding: 10px;
    border-radius: 25px;
    font-size: 1em;
    font-family: 'Century Gothic', Arial, sans-serif;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
}

.faq-content {
    display: none;
    padding: 10px;
    border-top: none;
    border-radius: 0 0 5px 5px;
    font-family: 'Century Gothic', Arial, sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
