.why-choose-upvc {
  max-width: 1000px;
  margin: 80px auto;
  text-align: center;
  padding: 20px;
}

.why-choose-upvc h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
  
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.feature-card .icon svg {
  width: 100%;
  height: 100%;
  border: 0px;
  fill: #00296b; /* Black icons */
  stroke: #fff !important;

}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
