html{
    scroll-behavior: smooth;
}
.schema-faq.wp-block-yoast-faq-block {
    max-width: 100%;
    margin: 20px 0;
}
.schema-faq-section {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 5px;
}
.schema-faq-question {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    background: #42a7c1;
    position: relative;
    transition: background 0.3s ease;
    padding-right: 40px;
    color: #ffffff;
}

.schema-faq-question:hover {
    background:#ffa600;
}
.schema-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: normal;
}

.schema-faq-section.is-open .schema-faq-question::after {
    content: '−';
}
.schema-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #ffffff;
    padding: 0 20px;
}
.schema-faq-section.is-open .schema-faq-answer {
    max-height: 1000px;
    padding: 15px 20px;
}