/* 行业背景 */
.industry-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industry-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.industry-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.fact-item {
  padding: 30px;
}

.fact-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.new-standard {
  padding: 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 12px;
}

.new-standard h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
