/* Component: Terms List */
.terms { background: #f4f3ff; padding: 48px 0 80px; }
.terms .container { max-width: 704px; }
.terms__header { text-align: center; }
.terms__header .section-badge--red {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11.2px;
    text-transform: uppercase;
    letter-spacing: 1.12px;
    margin-bottom: 16px;
    background: var(--red-badge-bg);
    color: var(--red-badge-text);
}
.terms__header .section-title { font-size: 24px; }
.terms__list { display: flex; flex-direction: column; gap: 12px; }
.terms__item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
}
.terms__num {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 9999px;
    background: #6141b9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10.4px;
    color: #fff;
    margin-top: 1px;
}
.terms__text { font-size: 13.6px; line-height: 1.625; color: #4a4a62; }
