/* FAQ Accordion Styles - Clean Minimal Design */
.faq-accordion {
    background: transparent;
}

.faq-item {
    transition: background-color 0.3s ease;
    background: transparent;
}

.faq-item .faq-header {
    border-bottom: 1px solid #000;
}

.faq-item.active {
    background-color: #f5f5f5;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 18px;
    cursor: pointer;
    user-select: none;
    background: transparent;
    transition: background-color 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-header {
    background: #E7E7E7;
}

.faq-item[aria-expanded="true"] .faq-header:hover {
    background: #E7E7E7;
}

.faq-question {
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-toggle svg {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-item[aria-expanded="true"] .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-icon {
    width: 34px;
    height: 34px;
    transition: color 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    max-height: 1000px;
}

.faq-answer {
    line-height: 1.2;
    font-size: 20px;
    padding: 20px 18px 43px;
}
