@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Lora", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}
header {
  text-align: center;
  padding: 10px 100px 0px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header h1 {
  color: #872d43;
  text-align: left;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 5px;
}
.steps span {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.line {
  width: 100%;
  height: 10px;
  background-color: #e4e7ec;
  border-radius: 50px;
  border: none;
}
.toggle-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.toggle-container button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  background-color: white;
  color: #872d43;
}
.toggle-container .active {
  background: #eebfd1;
  color: #872d43;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 20px;
  margin: 60px;
}
.plan h1 {
  font-size: 28px;
}
.plan h2 {
  font-size: 28px;
  color: black;
}
.plan {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}
.plan.popular {
  background: #eebfd1;
  color: #000;
}
.price span {
  font-size: 18px;
  color: #70707b;
}
.subscribe {
  background: #ff69b4;
  color: #fff;
  border: none;
  padding: 10px;
  width: 10%;
  border-radius: 5px;
  cursor: pointer;
}
.subscribe a {
  color: #872d43;
}
.subscribe:hover {
  color: #fff;
}
.subscribe a:hover {
  color: #fff;
}
