#section {
  padding: 100px 0;
  min-height: 100vh;
}

#section .title {
  margin-top: 80px;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: #333333;
  line-height: 1;
}

#section .content {
  margin: 48px auto 200px;
  max-width: 1200px;
  font-size: 24px;
  font-weight: 300;
  text-align: left;
  color: #333333;
  line-height: 48px;
}

#section .contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px auto 200px;
}

#section .contact-content .map {
  border-radius: 10px;
  width: 480px;
  height: 360px;
}

#section .contact-content .way-box {
  padding-left: 150px;
}

#section .contact-content .way-box .way {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 300;
  text-align: left;
  line-height: 1;
}

/* 关于我们页面样式 */
#about {
  padding: 80px 20px;
  background: #fff;
}

#about .about-container {
  max-width: 1000px;
  margin: 0 auto;
}

#about h1 {
  font-size: 3rem;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

#about .about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

#about .about-content h2 {
  font-size: 2rem;
  color: #fe304c;
  margin: 40px 0 20px 0;
  font-weight: 600;
}

#about .about-content p {
  margin-bottom: 20px;
  text-align: justify;
}

#about .about-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

#about .about-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

#about .about-content li::before {
  content: "•";
  color: #fe304c;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 联系我们区域 */
#contact {
  padding: 80px 20px;
  background: #f8f9fa;
}

#contact .contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

#contact h2 {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
}

#contact .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

#contact .map-container {
  text-align: center;
}

#contact .map-container .map {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#contact .contact-info h3 {
  font-size: 1.8rem;
  color: #fe304c;
  margin-bottom: 30px;
  font-weight: 600;
}

#contact .contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact .contact-details .way {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

#contact .contact-details .way:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
  #about {
    padding: 60px 15px;
  }

  #about h1 {
    font-size: 2.2rem;
  }

  #about .about-content h2 {
    font-size: 1.6rem;
  }

  #contact {
    padding: 60px 15px;
  }

  #contact h2 {
    font-size: 2rem;
  }

  #contact .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #contact .map-container .map {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #about {
    padding: 40px 10px;
  }

  #about h1 {
    font-size: 1.8rem;
  }

  #about .about-content {
    font-size: 1rem;
  }

  #contact {
    padding: 40px 10px;
  }

  #contact h2 {
    font-size: 1.6rem;
  }

  #contact .contact-details .way {
    font-size: 1rem;
    padding: 12px;
  }
}