.pricing-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8fafc;
}

.pricing-options {
  display: flex;
  gap: 2rem;
  max-width: 800px;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}

.pricing-card {
  flex: 1;
  max-width: 320px;
  min-width: 300px;
  background: white;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60px;
  margin-bottom: 20px;
}

.pricing-card:hover {
  border-color: #9ca3af;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.025em;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
  letter-spacing: -0.025em;
}

/* Mobile layout */
@media (max-width: 767px) {
  .pricing-options {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pricing-page {
    padding: 2rem 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}
