/* Custom FAQ Accordion Styles */
.cfa-accordion-wrapper {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.cfa-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.cfa-accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.cfa-accordion-header {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: #f9f9f9;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cfa-accordion-header:hover {
    background: #f0f0f0;
}

.cfa-accordion-content {
    display: none;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}
