.faq-item-bc6bd9f7 {
    margin-bottom: 15px;
    border: none;
    background-color: #ffffff;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 12px; /* Increased border radius for more rounded corners */
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Optional subtle shadow for depth */
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.faq-icon {
    background-color: #FFDD00; /* Yellow circle background */
    color: #000000; /* Black icon color */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Make it a circle */
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item-bc6bd9f7.active .faq-icon .dashicons::before {
    content: "\f460"; /* Dashicons minus icon */
}

.faq-answer {
    display: none;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    padding-right: 47px; /* Align text width with question */
}
.faq-item-bc6bd9f7.active .faq-answer {
    display: block;
}
