.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    background-color: #f5f5f5;
    position: relative;
}

.faq-icon {
    font-weight: bold;
    margin-right: 1rem;
    color: #333;
}

.question-text {
    flex-grow: 1;
    margin-right: 2rem;
}

.toggle-icon {
    position: absolute;
    right: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.answer-text {
    flex-grow: 1;
    margin-left: 2.5rem;
}
