/* FAQ accordion (products + landing pages). Native details/summary, no JS. */
.cfa-faq {
    margin: 10px 0 20px;
}
.cfa-faq__item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #fff;
    overflow: hidden;
}
.cfa-faq__item + .cfa-faq__item {
    margin-top: 8px;
}
.cfa-faq__q {
    cursor: pointer;
    padding: 14px 44px 14px 16px;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    position: relative;
    color: #333;
    background: #fafafa;
    transition: background 0.15s ease;
}
.cfa-faq__q:hover {
    background: #f0f0f0;
}
.cfa-faq__q::-webkit-details-marker {
    display: none;
}
.cfa-faq__q::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    color: #888;
}
.cfa-faq__item[open] > .cfa-faq__q::after {
    content: "\2212"; /* minus sign */
}
.cfa-faq__item[open] > .cfa-faq__q {
    background: #f0f0f0;
}
.cfa-faq__a {
    padding: 14px 16px;
    line-height: 1.6;
    color: #444;
    border-top: 1px solid #eee;
}
.cfa-faq__a p:first-child {
    margin-top: 0;
}
.cfa-faq__a p:last-child {
    margin-bottom: 0;
}
.cfa-faq-section {
    margin: 30px 0;
}
.cfa-faq-section > h2 {
    margin-bottom: 12px;
}
