.vof-legal-section {
    padding: 48px 0;
    background: var(--bg);
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.vof-legal-section__inner {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.vof-legal-section:last-of-type .vof-legal-section__inner {
    border-bottom: none;
}

.vof-legal-section__heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
}

.vof-legal-section__num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    flex-shrink: 0;
}

.vof-legal-section__heading h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.vof-legal-section__content p {
    font-size: 0.9375rem;
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vof-legal-section__content p:last-child {
    margin-bottom: 0;
}

.vof-legal-section__content ul,
.vof-legal-section__content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.vof-legal-section__content ul { list-style: disc; }
.vof-legal-section__content ol { list-style: decimal; }

.vof-legal-section__content li {
    font-size: 0.9375rem;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: 8px;
}

.vof-legal-section__content a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}

.vof-legal-section__content a:hover { color: var(--accent-hover); }

.vof-legal-section__content strong {
    font-weight: 600;
    color: var(--ink);
}

/* 子章节 */
.vof-legal-section__sub {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.vof-legal-section__sub h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

/* 表格 */
.vof-legal-section__table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.vof-legal-section__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.vof-legal-section__table th {
    background: var(--surface-alt);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-light);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.vof-legal-section__table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--ink-light);
    vertical-align: top;
    line-height: 1.6;
}

.vof-legal-section__table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .vof-legal-section { padding: 36px 0; }
    .vof-legal-section__inner { padding-bottom: 36px; }
    .vof-legal-section__heading h2 { font-size: 1.125rem; }
}
