/* 公司简介 */
.company-section {
  background-color: white;
}

.company-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.company-info {
  flex: 1;
}

.company-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.company-info p {
  margin-bottom: 20px;
  color: #555;
}

.company-strengths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.strength {
  text-align: center;
  /* padding: 30px 20px; */
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.strength:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.strength i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.strength h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
