.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    padding: 14px 16px;
    text-align: left;
    color: var(--color-ocean-900);
}

.faq-item__panel {
    padding: 0 16px 14px;
}

.faq-item__icon {
    color: var(--color-ocean-700);
    font-size: 1.2rem;
}