:root {
  --order2-main: #bd976d;
  --order2-text: #333;
  --order2-bg: #fff;
}

.ordersection2 {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: var(--order2-bg);
}

.ordersection2-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.ordersection2-image {
  flex: 1 1 50%;
  width: 50%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ordersection2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ordersection2-content {
  flex: 1 1 50%;
  width: 50%;
  padding: 0px 5vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ordersection2-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--order2-main);
  margin-bottom: 1.5rem;
  position: relative;
}

.ordersection2-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--order2-main);
  margin-top: 0.6rem;
  border-radius: 2px;
}
.ordersection2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ordersection2-list li {
  font-size: 1.05rem;
  color: var(--order2-text);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.ordersection2-list li i {
  color: var(--order2-main);
  font-size: 1.2rem;
  min-width: 25px;
}

.ordersection2-list li:hover {
  color: var(--order2-main);
  transform: translateX(8px);
}

@media (max-width: 1112px) {
  .ordersection2-title {
    font-size: 2rem;
  }
}
@media (max-width: 791px) {
 .ordersection2-title {
  font-size: 1.5rem;
} 
}

@media (max-width: 741px) {
  .ordersection2-container {
    flex-direction: column;
  }

  .ordersection2-image,
  .ordersection2-content {
    width: 100%;
    flex: 1 1 100%;
  }

  .ordersection2-image {
    height: 320px;
  }

  .ordersection2-content {
    text-align: center;
    padding: 0px 2rem;
    justify-content: center;
  }

  .ordersection2-title::after {
    margin: 0.6rem auto;
  }

  .ordersection2-list li {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .ordersection2-image {
    height: 250px;
  }

  .ordersection2-content {
    padding: 20px 1.5rem;
    text-align: left;          
    align-items: flex-start;   
  }

  .ordersection2-title {
    font-size: 1.6rem;
  }

  .ordersection2-title::after {
    margin: 0.6rem 0;        
  }

  .ordersection2-list li {
    font-size: 0.95rem;
    justify-content: flex-start; 
  }
}
