.terms-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 30px 16px 60px;
    font-family: inherit;
}

.doc-nav {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.doc-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 6px;
    color: #8e8e93;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}

.doc-nav-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.doc-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.doc-nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.doc-nav-link.active svg {
    opacity: 1;
}

.terms-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.terms-subtitle {
    font-size: 14.5px;
    color: #9ca3af;
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-date {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-notice {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    padding: 14px 18px;
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #c9cdd4;
}

.terms-notice strong {
    color: #ffffff;
}

.terms-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #e5e7eb;
    margin-top: 20px;
    margin-bottom: 8px;
}

.terms-content p {
    color: #c9cdd4;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14.5px;
}

.terms-content ul, .terms-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.terms-content li {
    color: #c9cdd4;
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: 14.5px;
}

.terms-content strong {
    font-weight: 600;
    color: #ffffff;
}

.terms-content a {
    color: #e5e7eb;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.terms-content a:hover {
    color: #ffffff;
}

