:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f18a1ce */.bp-faq-container {
    max-width: 850px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 20px;
}

.bp-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.bp-faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1d1d1f;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.bp-faq-header p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Category Headers */
.bp-faq-category {
    font-size: 18px;
    font-weight: 800;
    color: #FF3503; /* Electric Orange */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px 0 15px 5px;
    border-bottom: 2px solid rgba(255, 53, 3, 0.1);
    padding-bottom: 8px;
}

/* The Accordion Boxes */
.bp-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.2s ease;
}

/* The Clickable Question */
.bp-faq-question {
    padding: 22px 25px;
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
    transition: color 0.2s ease;
}

.bp-faq-question::-webkit-details-marker {
    display: none;
}

.bp-faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #FF3503;
    font-weight: 400;
    transition: transform 0.3s ease;
}

/* State when clicked open */
details[open].bp-faq-item {
    border-color: #FF3503;
    box-shadow: 0 4px 20px rgba(255, 53, 3, 0.08);
}

details[open] .bp-faq-question {
    color: #FF3503;
}

details[open] .bp-faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

/* The Answer Text */
.bp-faq-answer {
    padding: 0 25px 25px 25px;
}

.bp-faq-answer p {
    margin: 0;
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

.bp-faq-answer strong {
    color: #1d1d1f;
    font-weight: 700;
}/* End custom CSS */