/* Why Choose Section */
.why-choose {
  padding: 50px 0; /* reduced from 80px */
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem; /* reduced from 2.5rem */
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px; /* reduced from 60px */
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* reduced from 40px */
}

.feature-card {
  background: #fff;
  padding: 20px; /* reduced from 30px */
  border-radius: 8px; /* slightly smaller radius */
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* lighter shadow */
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px); /* smaller hover lift */
}

.feature-icon {
  width: 60px; /* reduced from 80px */
  height: 60px; /* reduced from 80px */
  background: #87cc46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px; /* smaller bottom margin */
}

.feature-icon i {
  font-size: 1.5rem; /* reduced from 2rem */
  color: #fff;
}

.feature-card h4 {
  font-size: 1.1rem; /* reduced from 1.3rem */
  font-weight: 700;
  margin-bottom: 10px; /* reduced from 15px */
  color: #333;
}

.feature-card p {
  font-size: 13px; /* slightly smaller */
  line-height: 1.4; /* slightly tighter */
  color: #666;
}
