.angie-faq-container-e078dadb {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 60rem;
    margin-inline: auto;
    font-family: inherit;
}
.angie-faq-details {
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
}
.angie-faq-details:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}
.angie-faq-summary {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}
.angie-faq-summary::-webkit-details-marker {
    display: none;
}
.angie-faq-summary::after {
    content: '+';
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1;
    color: #555;
}
.angie-faq-details[open] .angie-faq-summary::after {
    content: '-';
}
.angie-faq-content {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
}
.angie-faq-content p:last-child {
    margin-bottom: 0;
}