html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* Disable scrolling */
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #4a148c;
}

p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin: 20px 0;
  color: #7b1fa2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

input, textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

button {
  padding: 12px;
  background: #7b1fa2;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #6a0080;
}

.footer {
  margin-top: 20px;
  font-size: 13px;
  color: #999;
}
