/* ─── TERMS CONTENT WIDGET ─── */
.da-terms-content-section {
  padding: 80px 0;
  background: var(--white, #ffffff);
}

.da-terms-content-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.da-terms-content-section .content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sticky TOC */
.da-terms-content-section .toc-wrapper {
  position: sticky;
  top: 24px;
}

.da-terms-content-section .toc-card {
  background: var(--light-bg, #f8fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 12px);
  padding: 28px 24px;
  border-left: 4px solid var(--green, #61CE70);
}

.da-terms-content-section .toc-title {
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-dark, #4ab559);
  margin-bottom: 20px;
}

.da-terms-content-section .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.da-terms-content-section .toc-list li {
  border-bottom: 1px solid var(--border, #e5e7eb);
}

.da-terms-content-section .toc-list li:last-child {
  border-bottom: none;
}

.da-terms-content-section .toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  text-decoration: none;
  transition: all 0.2s;
}

.da-terms-content-section .toc-list a:hover,
.da-terms-content-section .toc-list a.active {
  color: var(--primary-dark, #4ab559);
  padding-left: 4px;
}

.da-terms-content-section .toc-num {
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 10px;
  font-weight: 700;
  color: var(--green, #61CE70);
  min-width: 20px;
}

.da-terms-content-section .toc-updated {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border, #e5e7eb);
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 12px;
  color: var(--text-muted, #6b7280);
}

/* Terms Content */
.da-terms-content-section .terms-content {
  max-width: 820px;
}

.da-terms-content-section .terms-section {
  margin-bottom: 52px;
  scroll-margin-top: 30px;
}

.da-terms-content-section .terms-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border, #e5e7eb);
}

.da-terms-content-section .terms-section-num {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--green, #61CE70);
  background: rgba(97,206,112,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  white-space: nowrap;
  margin-top: 4px;
}

.da-terms-content-section .terms-section h2 {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary, #111827);
  letter-spacing: 0.3px;
  margin: 0;
}

.da-terms-content-section .terms-section p {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: var(--text-body, #374151);
  margin-bottom: 14px;
  line-height: 1.8;
}

.da-terms-content-section .terms-section ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 14px;
}

.da-terms-content-section .terms-section ul li {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: var(--text-body, #374151);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--border, #e5e7eb);
  line-height: 1.7;
}

.da-terms-content-section .terms-section ul li:last-child {
  border-bottom: none;
}

.da-terms-content-section .terms-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green, #61CE70);
  border-radius: 50%;
}

.da-terms-content-section .terms-highlight {
  background: linear-gradient(135deg, rgba(97,206,112,0.08), rgba(97,206,112,0.04));
  border-left: 4px solid var(--green, #61CE70);
  border-radius: 0 8px 8px 0;
  padding: 18px 24px;
  margin: 20px 0;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px;
  color: var(--text-body, #374151);
  line-height: 1.8;
}

.da-terms-content-section .terms-contact-box {
  background: var(--secondary, #111827);
  border-radius: var(--radius, 12px);
  padding: 28px 32px;
  margin-top: 16px;
}

.da-terms-content-section .terms-contact-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.da-terms-content-section .terms-contact-box p strong {
  color: var(--green, #61CE70);
  font-family: var(--font-sub, 'Montserrat', sans-serif);
}

.da-terms-content-section .terms-contact-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .da-terms-content-section .content-layout {
    grid-template-columns: 1fr;
  }
  .da-terms-content-section .toc-wrapper {
    display: none;
  }
  .da-terms-content-section .terms-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .da-terms-content-section {
    padding: 56px 0;
  }
}
