.why-choose-us {
  padding: 4rem 2rem;
  background: #fff3e0;
  text-align: center;
  border-top: 2px dashed #FF6F00;
  border-bottom: 2px dashed #FF6F00;
}
.why-choose-us h2 {
  font-size: 2.5rem;
  color: #FF6F00;
  margin-bottom: 3rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.feature img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.feature h3 {
  color: #BF360C;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.feature p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}
