.hero {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    color: white;
    padding: 6rem 0;
  }
  .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .feature-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
  }
  .card-popular {
    position: relative;
    border: 2px solid #007bff;
  }
  .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    z-index: 1;
  }
  .feature-check {
    color: #28a745;
    margin-right: 0.5rem;
  }