.agentic-faq {
    max-width: 800px;
    margin: 2em auto;
}

.agentic-faq h2 {
    margin-bottom: 1em;
}

.agentic-faq__item {
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
}

.agentic-faq__summary {
    cursor: pointer;
    padding: 1em 1.5em;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s ease;
}

.agentic-faq__summary::-webkit-details-marker {
    display: none;
}

.agentic-faq__summary::after {
    content: "+";
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.agentic-faq__item[open] .agentic-faq__summary::after {
    content: "−";
}

.agentic-faq__summary:hover {
    background: #f9f9f9;
}

.agentic-faq__answer {
    padding: 0 1.5em 1.2em;
    line-height: 1.6;
    color: #444;
}

.agentic-faq__answer p {
    margin: 0 0 0.8em;
}

.agentic-faq__answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .agentic-faq__summary {
        padding: 0.8em 1em;
        font-size: 0.95em;
    }

    .agentic-faq__answer {
        padding: 0 1em 1em;
    }
}