.bellkor-identity {
  background: #f8f9fa;
  padding: 96px 64px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.identity-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.identity-heading {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.identity-subheading {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.identity-benefits-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  will-change: transform;
  transform-style: preserve-3d;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
  font-size: 24px;
  color: #009C8F;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
