 .pricing-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .plan {
      background-color: #fff;
      border: 2px solid #000;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .plan:hover {
      transform: translateY(-5px);
    }

    .plan img {
      width: 80%;
      margin-bottom: 10px;
    }

    .plan h2 {
      color: #111;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .price {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #111;
    }

    .features {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      text-align: left;
      color: #444;
    }

    .features li {
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
    }

    .btn {
      display: inline-block;
      background-color: #FFD700;
      color: #111;
      padding: 12px 20px;
      text-decoration: none;
      border-radius: 5px;
      margin-top: 20px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #e6c200;
    }

    .highlight {
      background-color: #111;
      color: #FFD700;
      border: 2px solid #FFD700;
    }

    .highlight h2 {
      color: #FFD700;
    }

    .highlight .price {
      color: #FFD700;
    }

    .highlight .features {
      color: #ccc;
    }

    .highlight .features li {
      border-color: #333;
    }

    .highlight .btn {
      background-color: #FFD700;
      color: #111;
      border: none;
    }

    .highlight .btn:hover {
      background-color: #e6c200;
    }

    @media (max-width: 600px) {
      .price {
        font-size: 2em;
      }
    }