.icon-text-demo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: #2c3e50;
  transition: color 0.3s ease;
  cursor: pointer;
}
.icon-text-demo:hover {
  color: #e67e22;
}
.icon-text-demo svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.demo-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.demo-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid currentColor;
  background: transparent;
  color: #3498db;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}
.demo-button:hover {
  background: currentColor;
  color: white;
}
.demo-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}