What’s in store.
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; } .faq-list details { border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; background: #fff; } .faq-list summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; font-weight: 600; font-size: 1rem; line-height: 1.4; color: #06232c; background: #f9fafb; cursor: pointer; } .faq-list summary::-webkit-details-marker { display: none; } .faq-list summary::after { content: "+"; flex-shrink: 0; font-size: 1.25rem; font-weight: 400; color: #536b75; } .faq-list details[open] summary::after { content: "−"; } .faq-list details[open] summary { border-bottom: 1px solid #e5e7eb; } .faq-list details p { margin: 0; padding: 0.75rem 1rem 1rem; color: #536b75; font-size: 0.9375rem; font-weight: 400; line-height: 1.5; background: #fff; } .faq-list det



