.terms-layout {
  display: grid;
  gap: var(--space-10);
}

.terms-header {
  max-width: 720px;
}

.terms-intro {
  margin-top: var(--space-4);
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
}

.terms-meta {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.terms-cta {
  text-decoration: none;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-bottom-cta {
  margin-top: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 161, 95, 0.35);
  background: radial-gradient(circle at top left, rgba(201, 161, 95, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(12, 75, 59, 0.18), transparent 60%),
              rgba(5, 6, 8, 0.96);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
  justify-content: space-between;
}

.terms-bottom-text {
  max-width: 520px;
}

.terms-bottom-text h2 {
  margin-bottom: var(--space-3);
}

.terms-bottom-text p {
  margin-bottom: 0;
}

.terms-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .terms-header {
    text-align: left;
  }

  .terms-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
