    /* Custom Pricing Styles */
    .pricing-section {
      background: #f8f9fa;
      padding: 80px 0;
    }
    
    .pricing-card {
      background: white;
      border-radius: 15px;
      padding: 40px 30px;
      margin: 20px 0;
      box-shadow: 0 5px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      height: 100%;
    }
    
    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    }
    
    .pricing-card.featured {
      background: #1a1a1a;
      color: white;
      border: 3px solid #007bff;
      transform: scale(1.05);
    }
    
    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }
    
    .popular-badge {
      background: white;
      color: #1a1a1a;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .pricing-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    
    .pricing-card.featured .pricing-title {
      color: white;
    }
    
    .pricing-amount {
      font-size: 36px;
      font-weight: 700;
      color: #007bff;
      margin: 20px 0;
    }
    
    .pricing-card.featured .pricing-amount {
      color: #fff;
    }
    
    .pricing-subtitle {
      color: #666;
      margin-bottom: 30px;
      font-size: 14px;
    }
    
    .pricing-card.featured .pricing-subtitle {
      color: #ccc;
    }
    
    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    
    .pricing-features li {
      padding: 10px 0;
      position: relative;
      padding-left: 30px;
      color: #666;
    }
    
    .pricing-card.featured .pricing-features li {
      color: #ddd;
    }
    
    .pricing-features li::before {
      content: "✓";
      color: #28a745;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 10px;
    }
    
    .pricing-btn {
      background: #1a1a1a;
      color: white;
      border: none;
      padding: 15px 40px;
      border-radius: 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      width: 100%;
      margin-top: auto;
    }
    
    .pricing-btn:hover {
      background: #333;
      color: white;
      transform: translateY(-2px);
    }
    
    .pricing-card.featured .pricing-btn {
      background: white;
      color: #1a1a1a;
    }
    
    .pricing-card.featured .pricing-btn:hover {
      background: #f8f9fa;
      color: #1a1a1a;
    }
    
    .custom-section {
      text-align: center;
      margin-top: 60px;
    }
    
    .custom-title {
      font-size: 28px;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
    }
    
    .custom-subtitle {
      color: #666;
      max-width: 600px;
      margin: 0 auto 30px;
    }
    
    .custom-btn {
      background: #333;
      color: white;
      border: none;
      padding: 15px 40px;
      border-radius: 30px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }
    
    .custom-btn:hover {
      background: #007bff;
      color: white;
      transform: translateY(-2px);
    }