.content {
  max-width: 700px; /* 🔥 daraltdıq */
  margin: 60px auto;
}

/* BLOCK */
.block {
  margin-bottom: 60px; /* 🔥 boşluğu balansladıq */
}

/* HEADER */
.block-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.block-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.line {
  width: 60px;
  height: 1px;
  background: #333;
}

/* LIST (ƏN VACİB HİSSƏ 🔥) */
.cards {
  display: flex;
  justify-content: center;
}

.cards ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 2; /* 🔥 daha dolu görünür */
}

.cards li {
  font-size: 16px;
  color: #222;
  transition: 0.3s;
  cursor: pointer;
}

/* hover effekti */
.cards li:hover {
  color: #6b4226;
  transform: translateX(5px);
}
