/* Terms & Conditions page-specific styles */
.terms-section {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: var(--space-6) var(--space-4);
  margin-bottom: var(--space-6);
}
.terms-section.card:first-of-type {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  flex-wrap: wrap;
}
.terms-header-content {
  flex: 1 1 400px;
}
.terms-header-image {
  flex: 1 1 200px;
  max-width: 250px;
  margin: 0 auto;
}
.terms-header-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .terms-section.card:first-of-type {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .terms-section {
    padding: var(--space-4) var(--space-2);
    margin-bottom: var(--space-4);
  }
}
.terms-section h2 {
  margin-top: 0;
}
.terms-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  justify-content: flex-start;
}
@media (max-width: 500px) {
  .terms-actions {
    flex-direction: column;
    gap: var(--space-2);
    align-items: stretch;
  }
  .terms-actions .button {
    width: 100%;
    margin: 0 0 var(--space-2) 0;
  }
}
.terms-section ul {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}
.terms-section li {
  margin-bottom: var(--space-2);
  line-height: var(--line-height-loose);
}
.terms-section a {
  word-break: break-all;
}
