/* FAQ Section Styles - Neutral and customizable */
.bwp-faq-section {
    margin: 20px 0;
    font-family: inherit;
}

.bwp-faq-heading {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: inherit;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.bwp-faq-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bwp-faq-question {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 0;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: inherit;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.bwp-faq-question:hover {
    background-color: #e9ecef;
}

.bwp-faq-toggle {
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease;
    user-select: none;
}

.bwp-faq-question.active .bwp-faq-toggle {
    transform: rotate(45deg);
}

.bwp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #ffffff;
}

.bwp-faq-answer.active {
    max-height: 500px; /* Adjust based on content needs */
}

.bwp-faq-answer-text {
    padding: 15px;
    margin: 0;
    line-height: 1.6;
    color: inherit;
}

/* Responsive design */
@media (max-width: 768px) {
    .bwp-faq-question {
        padding: 12px;
        font-size: 1em;
    }
    
    .bwp-faq-answer-text {
        padding: 12px;
    }
    
    .bwp-faq-heading {
        font-size: 1.3em;
    }
}

/* Accessibility improvements */
.bwp-faq-question:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .bwp-faq-answer {
        max-height: none !important;
        display: block !important;
    }
    
    .bwp-faq-toggle {
        display: none;
    }
}
