/* about.css - 晟康国际关于我们页面样式 */

/* 页面通用样式 */
.container-light {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title-container-light {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-container-light h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.section-title-container-light h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #005eb8;
  margin: 10px auto 0;
}

.section-title-container-light .subtitle-en {
  font-size: 18px;
  color: #888;
  font-style: italic;
}

/* 关于我们页面头部 */
.about-hero-section {
  height: 450px;
  background-image: url('/images/about-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  margin-top: 0;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.about-tagline {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* 机构简介部分 */
.about-intro-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.about-intro-content {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}

.about-intro-text {
  flex: 3;
}

.about-intro-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.intro-lead {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.about-intro-image {
  flex: 2;
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: #777;
}

/* 服务流程部分 */
.about-service-flow {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.flow-title {
  text-align: center;
  margin-bottom: 40px;
}

.flow-title h3 {
  font-size: 28px;
  color: #005eb8;
  margin-bottom: 10px;
}

.flow-title p {
  color: #666;
}

.flow-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flow-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px 15px;
}

.flow-icon {
  width: 70px;
  height: 70px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #005eb8;
  font-size: 24px;
  transition: all 0.3s ease;
}

.flow-item:hover .flow-icon {
  background: #005eb8;
  color: #fff;
  transform: scale(1.05);
}

.flow-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.flow-content p {
  color: #666;
  font-size: 14px;
}

.flow-arrow {
  color: #ccc;
  font-size: 20px;
  margin: 0 10px;
}

/* 我们的理念与使命 */
.about-mission-section {
  padding: 80px 0;
  background-color: #fff;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.mission-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.mission-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: #005eb8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
}

.mission-card h3 {
  color: #333;
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
}

.mission-card h3:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #005eb8;
  margin-top: 10px;
}

.mission-card ul {
  padding-left: 20px;
}

.mission-card ul li {
  margin-bottom: 10px;
  color: #555;
}

.mission-statement, .vision-statement {
  grid-column: span 2;
}

.mission-statement p, .vision-statement p {
  line-height: 1.8;
  color: #555;
}

/* 我们的专业优势 */
.about-advantages-section {
  padding: 80px 0;
  background-color: #f0f7ff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.advantage-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #005eb8;
  font-size: 28px;
  flex-shrink: 0;
}

.advantage-content h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 10px;
}

.advantage-content p {
  color: #666;
  line-height: 1.7;
}

/* 全球合作伙伴 */
.about-partners-section {
  padding: 80px 0;
  background-color: #fff;
}

.partners-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.partners-intro p {
  color: #555;
  line-height: 1.8;
}

.partners-map {
  margin-bottom: 60px;
}

.global-map-placeholder {
  background-color: #f0f7ff;
  height: 300px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #005eb8;
}

.global-map-placeholder i {
  font-size: 80px;
  margin-bottom: 20px;
}

.global-map-placeholder p {
  font-size: 20px;
}

.partners-count {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.count-item {
  text-align: center;
  padding: 20px;
  min-width: 180px;
}

.count-number {
  font-size: 48px;
  font-weight: 700;
  color: #005eb8;
  margin-bottom: 10px;
}

.count-label {
  color: #555;
}

/* 我们的承诺 */
.about-commitment-section {
  padding: 80px 0;
  background-image: linear-gradient(rgba(0, 94, 184, 0.9), rgba(0, 94, 184, 0.9)), url('/images/commitment-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.commitment-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.commitment-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.commitment-desc {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.commitment-list {
  margin-bottom: 50px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 25px;
}

.commitment-icon {
  flex-shrink: 0;
  margin-right: 15px;
  color: #fff;
  font-size: 22px;
}

.commitment-text {
  line-height: 1.7;
  font-size: 16px;
}

.commitment-cta .cta-button-light {
  display: inline-block;
  padding: 15px 40px;
  background-color: #fff;
  color: #005eb8;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.commitment-cta .cta-button-light:hover {
  background-color: #f0f7ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
  .about-intro-content {
    flex-direction: column;
  }
  
  .mission-statement, .vision-statement {
    grid-column: span 1;
  }
  
  .flow-items {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .advantage-item {
    flex-direction: column;
  }
  
  .advantage-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    height: 350px;
  }
  
  .about-hero-content h1 {
    font-size: 36px;
  }
  
  .about-tagline {
    font-size: 18px;
  }
  
  .section-title-container-light h2 {
    font-size: 30px;
  }
  
  .count-number {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .about-hero-section {
    height: 300px;
  }
  
  .about-hero-content h1 {
    font-size: 30px;
  }
  
  .count-item {
    min-width: 140px;
  }
} 