/* 服务页面样式 */
.main-content {
  margin-top: 70px;
}

.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.services-section {
  padding: 80px 0;
  background: white;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 60px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  max-width: 500px;
}

.service-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-image img:hover {
  transform: translateY(-5px);
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.service-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.service-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.service-content li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}

.service-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

.service-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
}

.feature .icon {
  font-size: 18px;
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px 25px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-item span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 16px;
  }

  .services-section {
    padding: 60px 0;
  }

  .service-item {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .service-item.reverse {
    flex-direction: column;
  }

  .service-image img {
    height: 250px;
  }

  .service-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .service-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .service-features {
    justify-content: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 24px;
  }

  .service-image img {
    height: 200px;
  }

  .service-content h2 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 14px;
  }

  .service-content li {
    font-size: 14px;
  }

  .feature {
    font-size: 12px;
    padding: 8px 12px;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 14px;
  }
}
