body {
  font-family: "Kode Mono", monospace;
  background-color: #0b0c0f;
  color: var(--muted, #e0e0e0);
  margin: 0;
  padding: 0;
}

.terms-header {
  background: #0b0c0f;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.terms-header .brand img {
  max-height: 40px;
}

.terms-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 10%;
  align-items: start;
}

.terms-column h1 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--accent, #ff6f61);
  margin-bottom: 20px;
}

.terms-column h2 {
  font-size: 20px;
  color: var(--accent, #ff6f61);
  margin-top: 24px;
  margin-bottom: 8px;
}

.terms-column p {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 12px;
}

.terms-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0c0f;
  color: var(--muted, #e0e0e0);
  font-size: 14px;
}

@media (max-width: 768px) {
  .terms-container {
    grid-template-columns: 1fr;
    padding: 60px 8%;
  }

  .terms-column.title {
    margin-bottom: 40px;
  }
}
