/* Base Section */
.pricing-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #F7F6F4;
  width: 100%;
}

/* Each Card */
.pricing-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 35px 30px;
  width: 370px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hover Effect — simple, elegant */
.pricing-card:hover {
  border: 1px solid #fb5557;
  box-shadow: 0 8px 20px rgba(251, 85, 87, 0.15);
  transform: translateY(-8px);
}

/* Title */
.pricing-card h3 {
  font-size: 1.4rem; /* increased from 1.1rem */
  font-weight: 700;
  margin-bottom: 18px;
  border-bottom: 1px solid #fb5557;
  padding-bottom: 12px;
  color: #222;
}

/* List Items */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
}

.pricing-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #333;
  font-size: 1.05rem; /* increased from 0.95rem */
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: "•";
  color: #fb5557;
  position: absolute;
  left: 0;
  top: 0;
}

/* Price Tag */
.price-tag {
  display: inline-block;
  background: #fb5557;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem; /* slightly larger */
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* Subtle Lift for Price on Hover */
.pricing-card:hover .price-tag {
  transform: scale(1.07);
}

/* Note */
.note {
  color: #555;
  font-size: 1rem; /* increased from 0.9rem */
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-section {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
    max-width: 420px;
    transform: none !important;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
  }

  .pricing-card ul li {
    font-size: 1rem;
  }

  .price-tag {
    font-size: 1rem;
  }
}
