:root {
  --order1-main: #bd976d;
  --order1-text: #333;
}

.ordersection1 {
  width: 100%;
  background-color: #fff;
  padding: 2rem 2rem;
  text-align: center;
}

.ordersection1-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.ordersection1-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--order1-main);
  margin-bottom: 1rem;
  position: relative;
}

.ordersection1-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--order1-main);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.ordersection1-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
  align-items: start;
}

.ordersection1-item {
  text-align: center;
}

.ordersection1-icon {
  width: 90px;
  height: 50px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ordersection1-icon i {
  font-size: 2rem;
  color: var(--order1-main);
}

.ordersection1-icon:hover {
  transform: scale(1.1);
}

.ordersection1-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.ordersection1-desc {
  font-size: 0.95rem;
  color: var(--order1-text);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .ordersection1-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 710px) {
  .ordersection1-container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .ordersection1-item:last-child {
    grid-column: span 2;
    justify-self: center;
  }

  .ordersection1-heading {
    font-size: 1.4rem;
  }
  .ordersection1-title {
  font-size: 1rem;
}
.ordersection1-desc {
  font-size: 0.75rem;

}
}

@media (max-width: 390px) {
.ordersection1-container {

  gap: 2rem;
}

  .ordersection1-title {
  font-size: 1rem;
}

.ordersection1-desc {
  font-size: 0.65rem;

}
}