/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, #f4f8fb, #ffffff);
  padding: 80px 20px;
  text-align: center;
}

.pricing h2 {
  font-size: 3rem;
  color: #333333;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.pricing .highlight {
  color: #0056ff;
}

.pricing-subtitle {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.pricing-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 30rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #0056ff;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 1.5rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  color: #333333;
  margin-bottom: 2rem;
}

.pricing-card .price span {
  font-size: 1.2rem;
  color: #999999;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-card ul li {
  font-size: 1.4rem;
  color: #555555;
  margin-bottom: 1rem;
}

.pricing-card .btn {
  background: #0056ff;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pricing-card .btn:hover {
  background-color: #0040c1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .pricing-card {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .pricing h2 {
    font-size: 2.5rem;
  }

  .pricing-subtitle {
    font-size: 1.2rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card h3 {
    font-size: 1.6rem;
  }

  .pricing-card .price {
    font-size: 1.8rem;
  }

  .pricing-card ul li {
    font-size: 1.2rem;
  }

  .pricing-card .btn {
    font-size: 1.2rem;
    padding: 0.8rem 1.6rem;
  }
}
