#why-choose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}

.why-choose-grid {
  display: flex;
  gap: 20px;
  width: 100%;
}

#why-choose img {
  width: 50%;
  border-radius: 10px;
  object-fit: cover;
}

.why-choose-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-text h2 {
  margin-bottom: 10px;
  color: #d4ac4b; 
}

.why-choose-text p {
  margin-bottom: 20px;
  color: #fff; 
}

.why-choose-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-item {
  display: flex;
  align-items: center;
  background-color: #29252c;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item i {
  font-size: 2rem;
  color: #d4ac4b; 
  margin-right: 15px;
}

.why-item span {
  font-size: 1rem;
  color: #fff; 
}

.why-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #why-choose img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

  #why-choose {
    flex-direction: column;
    align-items: center;
  }

  .why-choose-grid {
    flex-direction: column;
    gap: 10px;
  }

  .why-choose-text {
    width: 100%;
    text-align: center;
  }

  .why-item {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 15px;
  }

  .why-item i {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .why-item span {
    font-size: 1.2rem;
  }
}
