.wp-block-sfp-faq-accordion {
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    font-size: 1.2em;
    font-weight: 600;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    list-style: none; /* Hide the default triangle */
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide for Safari */
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.2s;
}

.faq-item[open] > .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 10px 20px 10px;
    line-height: 1.6;
}

/* Allow basic HTML from the schema guidelines */
.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    margin-top: 0;
}

.faq-answer a {
    color: #0073aa;
    text-decoration: underline;
}