/* about.css - 关于我们页面专用样式 */

.about-container {
  margin: 0 auto;
}

.about-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.08);
  border: 1px solid #ffe4ec;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  color: #ff6b9d;
}

.section-header i {
  font-size: 2rem;
}

.section-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.section-content p {
  color: #6a4a6c;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* 核心价值 */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(to bottom, #fff9fb, #fff5f8);
  border-radius: 15px;
  border: 1px solid #ffe4ec;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff9ebb 0%, #ff85a2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h4 {
  color: #ff6b9d;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: #8a6d8c;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 团队数据 */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(to right, #fff9fb, #fff5f8);
  border-radius: 15px;
  border: 1px solid #ffe4ec;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b9d;
  margin-bottom: 10px;
}

.stat-label {
  color: #8a6d8c;
  font-size: 1rem;
  font-weight: 600;
}

/* 服务流程 */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, #ff9ebb, #ff85a2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9ebb 0%, #ff85a2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 30px;
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  color: #ff6b9d;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  color: #6a4a6c;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 联系按钮 */
.contact-options {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff9ebb 0%, #ff85a2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 133, 162, 0.4);
  text-decoration: none;
  color: white;
}

.contact-btn.secondary {
  background: linear-gradient(to right, #fff9fb, #fff5f8);
  color: #ff6b9d;
  border: 2px solid #ff9ebb;
}

.contact-btn.secondary:hover {
  background: linear-gradient(135deg, #ff9ebb 0%, #ff85a2 100%);
  color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .about-section {
    padding: 30px 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .step:not(:last-child)::after {
    left: 30px;
    top: 70px;
    bottom: -40px;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .team-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}