.pricing-section {
  padding: 40px 20px;
  background-color: #f7f9fc;
  text-align: center;
}
.pricing-card ul li{
    text-align: left;
}
#pricetitle{
  color: #FFFAF9;
  background: linear-gradient(90deg, rgba(84, 175, 230, 1) 0%, rgba(0, 129, 209, 1) 100%);
  text-align: center;
  padding: 40px;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.pricing-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007AD9;
}

.price {
  font-size: 2em;
  color: #02182B;
  margin-bottom: 20px;
}

.price span {
  font-size: 0.6em;
  color: #666;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 10px 0;
  color: #333;
}

.pricing-card button {
  background-color: #007AD9;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
}

.pricing-card button:hover {
  background-color: #005fa3;
}

/* Responsive for larger screens */
@media (min-width: 768px) {
  .pricing-container {
    flex-direction: row;
    justify-content: center;
  }

  .pricing-card {
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    z-index: 2;
    }
}