.button-wrapper {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .payment-button {
      padding: 16px 36px;
      font-size: 18px;
      font-weight: 600;
      color: white;
      border: none;
      border-radius: 14px;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .payment-button:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .indian-button {
      background: linear-gradient(135deg, #0057b8, #0093e9); /* Cool blue gradient */
    }

    .international-button {
      background: linear-gradient(135deg, #6a11cb, #2575fc); /* Purple-blue gradient */
    }