#faq-home {
    margin-bottom: 3rem;
    padding: 0 1rem;

}

#faq-home .wrapper {
    flex-direction: column;
    max-width: 1250px;
    margin: 0 auto;
}

#faq-home h2 {
    width: 100%;
    text-align: center;
    color: #111;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

/* New: <h3> wraps the button */
#faq-home h3 {
    margin: 0 0 20px 0; /* match old spacing between questions */
    font-size: 1.8rem;  /* matches what you intended with the old "question" size */
    font-weight: normal;
    width: 100%;
}

/* Remove list styling since you switched to UL/LI */
#faq-home .faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#faq-home .faq-list p + p {
    margin-top: 1rem;
}

#faq-home .faq-item {
    margin: 0;
}

/* Button keeps old accordion look */
#faq-home button.accordion {
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: left;
    width: 100%;
    border-radius: 11px;
    outline: none;
    transition: 0.4s;
    padding: 1rem 1rem;
    padding-left: 1.5rem;

    /* Helpful: align text and icon like before */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    /* Make sure button typography inherits the h3 sizing */
    font: inherit;
    color: inherit;
}

/* Panel matches old panel look */
#faq-home div.panel {
    padding: 0 1.5rem;
    overflow: hidden;
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
}

/* Optional: rotate arrow on open */
#faq-home button.accordion picture,
#faq-home button.accordion img {
    flex: 0 0 auto;
}

#faq-home button.accordion.active img {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

/* Old leftover class kept (if you still use it elsewhere) */
.down-arrow {
    background-image: url('/media/images/arrow-down.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    cursor: pointer;
}
