.faq-list {margin-bottom:20px !important;} .faq-question {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
text-align: left;
font-size: 1.1em;
padding: 0.6em 0.6em 0.6em 2em;
margin: 0;
border: none;
border-bottom: 1px solid #ddd;
background: #f9f9f9 !important;
cursor: pointer;
transition: background 0.3s;
position: relative;
}
.faq-question::before {
content: "+";
position: absolute;
left: 0.5rem;
font-weight: bold;
}
.faq-question[aria-expanded="true"]::before {
content: "–";
} .faq-answer { display: none; overflow: hidden; height: 0; border-left: 2px solid #ddd;
margin-bottom: 0.8em;
transition: height 0.35s ease; }
.faq-answer p {padding: 0.5em 1em;  } .faq-question[aria-expanded="true"] + .faq-answer { } .faq-icon-wrap { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.faq-icon { width: 50px; height: 50px; object-fit: contain; margin-right: 10px; }
.faq-text { flex: 1; }
.faq-category { font-size: 1.4em; font-weight: bold; margin: 1.5em 0 0.5em; padding-bottom: 0.3em; border-bottom: 2px solid #ddd; }
.faq-category small { font-weight: normal; color: #666; } @media (prefers-reduced-motion: reduce) {
.faq-answer { transition: none !important; }
}