.gradient-background {
  background:linear-gradient(300deg,#2A629A,#FF7F3E,#FFDA78);
  background-size: 100% 125%;
  animation: gradient-animation 18s ease infinite;
}



.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 2rem;
}
.pricing-plan {
  flex: 1;
  max-width: 4000px;
  padding: 0px;
  background-color: #f2f2f2;
  border-radius: 50px;
  text-align: center;
}
.plan-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-price {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan-features li {
  margin-bottom: 16px;
}
.plan-button {
  padding: 10px;
  background-color: #ff6600;
  color: #fff;
  border-radius: 5px;
  border: none;
}
@media (max-width: 1250px) {
  .pricing-container {
    flex-direction: column;
    height: 100%;
  }
}