/* FAQ Schema & Accordion Styles */
.fsa-faq-container {
    margin: 2em 0;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.fsa-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.fsa-faq-item:last-child {
    border-bottom: none;
}

.fsa-faq-question {
    font-size: 16px!important;
    margin: 0;
    font-weight: 600;
}

.fsa-faq-question button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    text-align: left;
    font-size: 16px!important;
    font-weight: inherit;
    font-family: inherit;
    color: #333;
    transition: background-color 0.2s ease;
}

.fsa-faq-question button:hover,
.fsa-faq-question button:focus {
    background: #f1f1f1;
    outline: none;
}

.fsa-faq-icon {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-left: 15px;
    transition: transform 0.3s ease;
    position: relative;
}

.fsa-faq-icon::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4em;
    line-height: 1;
    font-weight: 400;
}

/* State when expanded */
.fsa-faq-question button[aria-expanded="true"] .fsa-faq-icon {
    transform: rotate(45deg);
}

.fsa-faq-answer {
    padding: 0 20px;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.fsa-faq-answer[hidden] {
    display: none;
}

.fsa-faq-answer > div {
    padding: 20px 0;
}