.order-info {
  color: black;
  max-width: 1200px;
  margin: -40px auto 0 auto; /* shift up by 80px */
  padding: 40px 20px;
  text-align: center;
}

.order-main-title {
  font-weight: bold;
  font-size: 30px;
  color: #FF4433;
  margin-bottom: 10px;
  font-family: arial;
}

.order-subtitle {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: arial;
}

.order-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.order-step {
  flex: 1 1 30%;
  min-width: 250px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
    margin-bottom: 0px; /* Add this line */

}

.order-step:hover {
  transform: translateY(-5px);

}


.step-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #FF4433;
}

.step-title {
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 10px;
  font-family: arial;
}

.step-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  font-family: arial;
}









.pwa-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;            /* spacing between boxes */
  flex-wrap: nowrap;    /* keep all in one line */
  padding: 0 30px;      /* 30px padding on left and right */
  margin-top: 30px;
  box-sizing: border-box;
}

.pwa-box {
  background-color: #f2f1e8;
  border: 1px solid #ddd;
  padding: 25px 20px;
  flex: 1 1 30%;
  min-width: 260px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 50px;   /* only bottom margin */
}



.pwa-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.pwa-box button {
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.pwa-box button:hover {
  background-color: black;
  color: white;
}

@media (max-width: 768px) {
  .pwa-links {
    flex-direction: column;
    gap: 20px;
  }

  .pwa-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

















/* below change the 3 buttons look and feel */
.el-button--large.is-round {
  border-color: rgba(0, 0, 0, 0.2) !important;
  font-weight: bold;
  color: black !important;
  background-color: white;
  border-radius: 8px !important; /* reduced rounding */
}

/* On hover: text turns green, background stays white */
.el-button--large.is-round:hover {
  color: green !important;
  background-color: white !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}