.differentiators-title {
  color: #2A1B39;
  font-weight: 700;
  margin-bottom: 100px;
  font-size: 40px;
}

.differentiators-cards {
  display: flex;
  /* gap: 20px; */
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-bottom: 100px;
}

.differentiator-card {
  background: linear-gradient(180deg, #1a1454 0%, #221a6b 100%);
  border-radius: 20px;
  padding: 60px 30px;
  width: 350px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.differentiator-card-highlight {
  background: linear-gradient(180deg, #4b2fd6 0%, #3a1fc7 100%);
}

.differentiator-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.differentiator-icon .material-icons {
  font-size: 55px;
  color: #fff;
}

.differentiator-card h3 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 15px;
}

.differentiator-card p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 19px;
}

.btn-differentiator {
  background: #fff;
  font-size: 18px;
  color: #1a1454;
  border-radius: 10px;
  padding: 15px 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-differentiator:hover {
  background: #1a1454;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 20, 84, 0.25);
}






@media (max-width: 991px) {
  .differentiators-cards {
    flex-direction: column;
    align-items: center;
  }

.differentiators-title {
    font-size: 30px;
    padding: 0 45px;
    margin-bottom: 70px;
}

.differentiators-cards {
    margin-bottom: 70px;


}

}