.why-choose {
  padding: 60px 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.image-box {
  flex: 1;
  min-width: 320px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.content {
  flex: 1;
  min-width: 320px;
}

.section-number {
  color: #4CAF50;
  font-weight: 600;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.description {
  color: #6b6b6b;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  background-color: #eafaf2;
  padding: 15px 20px;
  border-radius: 10px;
  transition: background 0.3s;
  cursor: pointer;
}

.feature-item:hover {
  background-color: #dff5ea;
}

.feature-item.active {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item .icon {
  font-size: 24px;
  color: #2caa60;
  margin-right: 15px;
  font-weight: bold;
  line-height: 1;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 15px;
  color: #666;
}