.why-choose-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-headerwh {
  text-align: center;
  margin-bottom: 60px;
}

.section-titlewh {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-titlewh::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

.section-subtitlewh {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-gridwh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-cardwh {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-cardwh::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.feature-cardwh:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-cardwh:hover::before {
  width: 8px;
}

.feature-iconwh {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.feature-titlewh {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.feature-descriptionwh {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-sectionwh {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  color: white;
}

.cta-titlewh {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-textwh {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttonwh {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: #3b82f6;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttonwh:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .section-titlewh {
    font-size: 2rem;
  }

  .features-gridwh {
    grid-template-columns: 1fr;
  }

  .feature-cardwh {
    padding: 25px;
  }
}
