.container.check {
  max-width: 1000px;
  margin: auto;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

h2 {
  margin-bottom: 30px;
}

.category {
  margin-bottom: 45px;
}

.category h3 {
  font-size: 18px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.checklist-item {
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.checklist-item:hover {
  background: #f9fafb;
}

.checklist-header {
  display: flex;
  align-items: center;
}

.checklist-header input {
  margin-right: 12px;
  width: 16px;
  height: 16px;
}

.label-text {
  font-size: 14px;
  font-weight: 500;
}

.item-description {
  font-size: 12px;
  color: #6b7280;
  margin-left: 28px;
  margin-top: 4px;
  line-height: 1.4;
}