.faq-accordion-2186-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-2186-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-2186-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.2s ease;
}

.faq-2186-header:hover {
    background-color: #f9f9f9;
}

.faq-2186-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-2186-header[aria-expanded="true"] .faq-2186-icon {
    transform: rotate(180deg);
}

.faq-2186-content-wrapper {
    display: none; /* Handled by jQuery slideDown/slideUp */
}

.faq-2186-content {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* Open state styles if needed */
.faq-2186-item.is-active {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
