.pricing {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    font-family: system-ui, sans-serif;
    color: #111;
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  
  .pricing-header p {
    font-size: 1rem;
    color: #666;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .plan-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  
  .plan-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .subheading {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
  }
  
  .plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  
  .plan-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  button {
    padding: 0.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
  }
  
  button.primary {
    background: #000;
    color: #fff;
    border: none;
  }

  .button-link {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #ccc;
  }
  
  .plan-card.featured {
    border: 2px solid #000;
  }
  
  .plan-card.featured .badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-weight: 600;
  }
  .pricing-intro {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f8f8;
    border-bottom: 1px solid #e1e1e1;
  }
  
  .pricing-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .pricing-intro p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  .pricing-outro {
    padding: 3rem 1.5rem;
    background: #f4f4f4;
    border-top: 1px solid #ddd;
    text-align: center;
    margin-bottom: -3rem;
  }
  
  .pricing-outro h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .pricing-outro p {
    max-width: 800px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }

  .main {
    padding-bottom: 40px !important;
  }
  