/* Wrapper */
.custom-faqs-wrapper {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Category Title */
.custom-faqs-wrapper .faq-category-title {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #222;
    border-left: 4px solid #f0c419;
    padding-left: 10px;
}

/* Controls */
.custom-faqs-wrapper .custom-faqs-controls button {
    margin-right: 8px;
    font-weight: 600;
    background: #f0c419;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    color: #222;
    transition: background 0.3s ease;
}
.custom-faqs-wrapper .custom-faqs-controls button:hover {
    background: #e0b315;
}

/* Accordion Item */
.custom-faqs-wrapper .faq-item {
    border: 1px solid #e1e1e1;
    border-radius: 8px !important;
    margin-bottom: 12px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.custom-faqs-wrapper .faq-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Question Button */
.custom-faqs-wrapper .faq-question {
    font-weight: 600;
    font-size: 16px;
    background: #f9f9f9 !important;
    border: none !important;
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.custom-faqs-wrapper .faq-question:hover {
    background: #f1f1f1 !important;
    color: #000;
}
.custom-faqs-wrapper .faq-question:focus {
    box-shadow: none !important;
}

/* Answer */
.custom-faqs-wrapper .faq-answer .accordion-body {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    padding: 16px 18px;
}

/* Icon */
.custom-faqs-wrapper .faq-icon {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

/* Remove Bootstrap default arrow */
.custom-faqs-wrapper .accordion-button::after {
    display: none !important;
    content: none !important;
}

/* Ensure no extra spacing where arrow was */
.custom-faqs-wrapper .accordion-button {
    padding-right: 18px !important;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .custom-faqs-wrapper .faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }
    .custom-faqs-wrapper .faq-answer .accordion-body {
        font-size: 14px;
        padding: 12px 16px;
    }
    .custom-faqs-wrapper .faq-category-title {
        font-size: 20px;
    }
}
