
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}
.header {
  background: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.logo {
  height: 40px;
}
.header-title {
  color: white;
  background: black;
  margin-left: 20px;
  font-size: 24px;
  padding: 5px 15px;
  border-radius: 5px;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}
input[type="text"] {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}
button {
  padding: 10px 20px;
  background-color: #ff6a00;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.steps {
  margin-top: 30px;
}
.step {
  background: white;
  padding: 20px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.step h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
