/* Text Sheets (About Us, Policies, Terms) Stylesheet */

.text-sheet-container {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.text-sheet-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.75rem;
}

.text-sheet-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
}

.text-sheet-content p strong {
  color: #4f46e5;
}

.highlight-box {
  background-color: #eef2ff;
  border: 1px solid #e0e7ff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #312e81;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  color: #374151;
  line-height: 1.625;
}

.text-sheet-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-sheet-list li {
  line-height: 1.625;
}

.text-sheet-list a {
  color: #4f46e5;
  text-decoration: underline;
}

.text-sheet-list a:hover {
  color: #4338ca;
}

.text-sheet-back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #4f46e5;
  font-weight: 600;
}

.text-sheet-back-link:hover {
  text-decoration: underline;
}

.danger-highlight-box {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
}

.danger-highlight-box p {
  color: #991b1b;
  line-height: 1.625;
}

