body {
  font-family: "Sono", sans-serif;
  background: #f7f9fc;
}
.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 100vh;
}

.pricing-plan {
  flex: 1;
  max-width: 400px;
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
}
.pricing-plan {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-plan:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan-button {
  background-color: #ff6600;
  color: white;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  margin-bottom: 20px;
}

.plan-button:hover {
  background-color: #e65c00;
  transform: scale(1.05);
}

@media (max-width: 1250px) {
  .pricing-container {
    flex-direction: column;
    height: 100%;
  }
}
