.for-who-container {
  margin-top: 2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.audience-item {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.audience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.audience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: rgba(237, 145, 52, 0.1);
}

.audience-icon i {
  font-size: 28px;
  color: #ed9134;
}

.audience-item h3 {
  font-size: 1.2rem;
  color: #333;
}
