
/* Current State page styles */

body {
  font-family: var(--bs-body-font-family);
  color: var(--bs-body-color);
  min-height: 100vh;
}

.content-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eef2ff;
}

.content-card ol,
.content-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.content-card li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-card ul.sub-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.25rem;
}

.content-card ul.sub-list li {
  margin-bottom: 0.25rem;
}

.note-callout {
  background: #eef2ff;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #1f2937;
}

.note-callout strong {
  color: #2563eb;
}

.privacy-note {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  font-style: italic;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: #eef2ff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #2563eb;
  margin-right: 0.75rem;
}

.card-header-row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eef2ff;
}

.card-header-row h3 {
  margin: 0;
  border: none;
  padding: 0;
}

footer {
  padding: 2rem 0;
  text-align: center;
  color: white;
  font-size: 0.875rem;
}
