  body { background: var(--navy-deep); }
  .terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(60px + var(--space-2xl)) var(--space-lg) var(--space-3xl);
  }
  .terms-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .terms-header h1 {
    color: var(--white);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-sm);
  }
  .terms-header .version {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-sm);
  }
  .terms-toc {
    background: var(--navy);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }
  .terms-toc h2 {
    color: var(--white);
    font-size: var(--fs-md);
    margin-bottom: var(--space-md);
  }
  .terms-toc ol {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-xl);
  }
  @media (max-width: 600px) {
    .terms-toc ol { grid-template-columns: 1fr; }
  }
  .terms-toc li { counter-increment: toc-counter; }
  .terms-toc a {
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-sm);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    transition: color 0.2s ease;
  }
  .terms-toc a::before {
    content: counter(toc-counter) ".";
    color: var(--accent-light);
    font-weight: 500;
    min-width: 1.5em;
  }
  .terms-toc a:hover { color: var(--white); }
  .terms-content {
    background: var(--navy);
    border-radius: var(--border-radius);
    padding: var(--space-2xl);
  }
  .terms-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .terms-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .terms-section h2 {
    color: var(--accent-light);
    font-size: var(--fs-h4);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
  }
  .section-number {
    background: rgba(212, 175, 85, 0.2);
    color: var(--accent-light);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    flex-shrink: 0;
  }
  .terms-section h3 {
    color: var(--white);
    font-size: var(--fs-base);
    margin: var(--space-lg) 0 var(--space-sm);
  }
  .terms-section p {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
  .terms-section ul, .terms-section ol {
    color: rgba(255,255,255,0.8);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    padding-right: var(--space-xl);
    padding-left: var(--space-xl);
  }
  .terms-section li { margin-bottom: var(--space-sm); }
  .definition-term {
    color: var(--accent-light);
    font-weight: 500;
  }
  .contact-info {
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
  }
  .contact-info p { margin-bottom: var(--space-sm); }
  .contact-info a { color: var(--accent-light); }
  .terms-footer {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .terms-footer p {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-sm);
    margin: 0;
  }
  .back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; }
  .back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }
