.faq-accordion {
    margin-top: 2rem;
    text-align: center;
}

.faq-accordion h4 {
    color: #023047;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item {
    border: 1px solid #D6D6D6;
    border-radius: 1rem;
    background-color: #FEFEFE;
    padding: 1rem !important;
    margin-bottom: 0.5rem;
}

.faq-question {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.faq-question-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.faq-question div>p {
    margin: unset !important;
}

.faq-question span {
    display: flex !important;
}

.faq-answer {
    display: none;
}

.faq-answer p {
    text-align: justify;
    color: #363636;
    font-size: 14px;
    margin-bottom: unset !important;
    margin-top: 0.5rem;
}

.faq-question .arrow img {
    transition: transform 0.3s ease;
    transform: rotate(90deg);
}

.faq-question-title p {
    font-weight: bold;

}