.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .package {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .package:hover {
    transform: translateY(-5px);
  }

  .package h2 {
    margin-top: 0;
    color: #333;
  }

  .price {
    font-size: 24px;
    color: #0078D7;
    margin: 10px 0;
  }

  .features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }

  .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0078D7;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }

  .btn:hover {
    background: #005fa3;
  }