body {
  background-color: #1e1e2f;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 40px 20px;
  text-align: center;
  color: #f4f4f4;
}

h1 {
  margin-bottom: 30px;
  font-size: 2em;
  color: #ffffff;
}

.plan-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* tightened spacing */
  flex-wrap: wrap;
}

.plan-box,
.order-container {
  background-color: #26283f;
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  text-align: left;
}

.plan-box:hover,
.order-container:hover {
  transform: scale(1.02);
  background-color: #383b5c;
}


.back-button {
  display: inline-block;
  margin: 20px;
  padding: 10px 16px;
  background-color: #2c2f4a;
  color: #00ff9d;
  border: 1px solid #00ff9d;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease, color 0.2s ease;
}

.back-button:hover {
  background-color: #00ff9d;
  color: #1e1e2f;
}



.plan-box h2,
.order-container h1 {
  margin-top: 0;
  color: #ffffff;
  text-align: center;
}

.plan-box ul,
.order-container ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-box li,
.order-container li {
  margin: 8px 0;
  color: #cccccc;
  padding-left: 1.5rem;
  position: relative;
}

.spacer {
  visibility: hidden;
  height: 28px; /* Adjust this to match line height of list items */
}



.plan-box li::before,
.order-container li::before {
  content: '✔';
  color: #00ff9d;
  position: absolute;
  left: 0;
}

.price {
  font-size: 1.5em;
  color: #ffffff; /* changed from purple to white */
  margin: 15px 0;
  text-align: center;
}

.order-button,
.order-btn {
  display: block;
  background-color: #00ff9d;
  color: #1e1e2f;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: fit-content;
  margin: 0 auto; /* ✅ This centers the button */
}


.order-button:hover,
.order-btn:hover {
  background-color: #00d48d;
}
