.faq-list{
    display:grid;
    gap:12px;
}

.faq-item{
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.faq-item summary{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    min-height:60px;
    padding:18px 52px 18px 18px;
    color:#0f172a;
    cursor:pointer;
    font-weight:950;
    letter-spacing:-.025em;
    list-style:none;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary:after{
    content:"+";
    position:absolute;
    right:18px;
    top:50%;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eff6ff;
    color:#1d4ed8;
    transform:translateY(-50%);
    font-size:20px;
    line-height:1;
}

.faq-item[open] summary{
    border-bottom:1px solid #e5e7eb;
}

.faq-item[open] summary:after{
    content:"–";
    background:#2563eb;
    color:#ffffff;
}

.faq-item > div{
    padding:18px;
    color:#475569;
    font-size:15px;
    line-height:1.72;
}

.faq-item > div > *:first-child{
    margin-top:0;
}

.faq-item > div > *:last-child{
    margin-bottom:0;
}
