

.rules-center {
  align-items: center;
  gap: 20px;
  
}

.rules-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 10px;
}

.rules-content {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rule-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 16px;
  border-radius: 20px;
  border: solid 2px var(--gray);
  box-shadow: 0 4px 0 0 var(--gray);
}

.rule-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.rule-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.rule-text strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: #000;
}

