/* 关于我们页面专用样式 */

/* 页面标题区域 */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
}

.header-content h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.header-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* 容器样式 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 公司介绍区域 */
.company-intro {
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.intro-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.company-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.company-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  flex: 1;
}

.company-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #64b5f6;
  margin-bottom: 0.5rem;
}

.company-stats .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.intro-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.mission-card p,
.vision-card p {
  color: #666;
  line-height: 1.6;
}

/* 区域标题样式 */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* 核心价值观区域 */
.values-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}



/* 服务特色区域 */
.features-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card>p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  color: #64b5f6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 联系我们区域 */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info>p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  font-size: 2rem;
  margin-top: 0.5rem;
}

.contact-details h4 {
  color: #64b5f6;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.contact-form .card {
  background: rgba(255, 255, 255, 0.95);
}

.contact-form h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}


/* 隐私政策页面样式 */
.privacy-section {
  padding: 0px 20px;
  /* background-color: #f8f9fa; */
  min-height: calc(100vh - 200px);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  /* background: white; */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
}

.privacy-header h2 {
  font-size: 32px;
      color: #fff;
  margin-bottom: 10px;
}

.privacy-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-policy {
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h3 {
  font-size: 20px;
      color: #fff;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.policy-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.policy-section ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.policy-section li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.policy-section li strong {
  color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2rem;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-stats {
    flex-direction: column;
    gap: 1rem;
  }

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

  .intro-text h2 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .values-grid,
  .team-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }

  .privacy-section {
    padding: 20px 15px;
  }

  .privacy-content {
    padding: 25px 20px;
  }

  .privacy-header h2 {
    font-size: 26px;
  }

  .policy-section h3 {
    font-size: 18px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 2rem 0 1rem;
  }

  .header-content h1 {
    font-size: 1.8rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .company-intro,
  .values-section,
  .team-section,
  .features-section,
  .contact-section {
    padding: 2rem 0;
  }

  .privacy-content {
    padding: 20px 15px;
  }

  .privacy-header h2 {
    font-size: 24px;
  }

  .privacy-header p {
    font-size: 14px;
  }

  .policy-section {
    margin-bottom: 25px;
  }

  .policy-section h3 {
    font-size: 16px;
  }
}