.faq-wrapper {
    padding: 10px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 1.4rem;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.poudra-faq-item {
    border: 2px solid #000;
    margin-bottom: 10px;
    background: #fff;
}

.poudra-faq-item summary {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.poudra-faq-item summary::after {
    content: "[+]";
    font-family: monospace;
}

.poudra-faq-item[open] summary::after {
    content: "[-]";
}

.faq-answer {
    padding: 15px;
    border-top: 1px solid #eee;
    line-height: 1.5;
}