.pricing-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid #4a5568;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-amount {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: #4a5568;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #718096;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features-list li {
  padding: 0.75rem 0;
  color: #4a5568;
  display: flex;
  align-items: center;
}

.pricing-features-list li::before {
  content: "✓";
  margin-right: 0.75rem;
  color: #48bb78;
  font-weight: bold;
} 