/* Pricing Features Improvements */

/* Fix alignment of feature text */
.pricing-card .features-list {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-card .features-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

/* Blue tick bullet points */
.pricing-card .features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* For mobile screens */
@media (max-width: 768px) {
  .pricing-card .features-list {
    padding-left: 0;
  }
  
  .pricing-card .features-list li {
    padding-left: 25px;
  }
  
  .pricing-card .features-list li::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
}

/* Make cards same height */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card .features-list {
  flex: 1;
}

/* Center "Select Plan" button at bottom of card */
.pricing-card .cta-button {
  margin-top: auto;
  align-self: center;
}
