/* Pricing Section Styles */

.bg-pricing-section {
  background-color: #f8f9fa;
}

.bg-pricing-tab-active {
  background-color: #73BD6F; /* green-500 */
}

.bg-pricing-tab-active-hover:hover {
  background-color: #73BD6F; /* green-600 */
}

.text-pricing-tab-inactive {
  color: #4b5563; /* gray-600 */
}

.bg-pricing-tab-inactive-hover:hover {
  background-color: #f3f4f6; /* gray-100 */
}

.bg-pricing-welcome {
  background: linear-gradient(120deg, #f59e0b, #f97316); /* amber-500 to orange-500 */
}

.text-pricing-price {
  color: #1e40af; /* blue-800 */
}

.text-pricing-check {
  color: #73BD6F; /* green-500 */
}

.bg-pricing-button {
  background-color: #73BD6F; /* green-500 */
}

.bg-pricing-button-hover:hover {
  background-color: #73BD6F; /* green-600 */
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 1.5rem;
  }
}