.related-categories {
  margin: 60px auto 40px;
  padding: 20px;
  max-width: 960px;
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 16px;
}

.related-categories h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #222;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-link {
  padding: 10px 18px;
  background-color: #efefef;
  border-radius: 20px;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.category-link:hover,
.category-link:focus {
  background-color: #0078d4;
  color: #fff;
  outline: none;
}
