/* Terms & Conditions Page Styles */
.policy-hero {
  margin: var(--space-10) auto var(--space-6) auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.policy-hero img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.terms-hero {
  margin-top: var(--space-16);
  margin-bottom: var(--space-12);
  text-align: center;
}
.terms-hero .lead {
  font-size: var(--font-size-lg);
  color: var(--color-muted);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-inline: auto;
}

.terms-section {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  margin-bottom: var(--space-8);
  padding: var(--space-8) var(--space-5);
  border: 1px solid var(--color-gray-100);
}
.terms-section h2 {
  font-size: var(--font-size-xl);
  margin-top: 0;
  margin-bottom: var(--space-4);
}
.terms-section ul {
  list-style: disc inside;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  margin-left: var(--space-6);
}
.terms-section li {
  margin-bottom: var(--space-3);
  line-height: var(--line-height-loose);
}

.terms-cta {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  margin-bottom: var(--space-16);
  margin-top: var(--space-8);
}

@media (max-width: 800px) {
  .terms-section {
    padding: var(--space-5) var(--space-3);
  }
  .terms-cta {
    flex-direction: column;
    gap: var(--space-4);
  }
  .terms-hero {
    margin-top: var(--space-8);
    margin-bottom: var(--space-6);
  }
}
