* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", "PingFang TC", "Helvetica Neue", Arial,
    sans-serif;
  background: linear-gradient(135deg, #ffb6c1 0%, #ffa07a 50%, #ffd700 100%);
  min-height: 100vh;
  padding: 40px 0 0;
  color: #333;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
  min-height: auto;
}

/* 标题样式 */
h1 {
  font-size: 48px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  color: #34495e;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #5fc3c8;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: #34495e;
  margin: 25px 0 15px;
}

/* 段落和文本样式 */
p {
  line-height: 1.8;
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.highlight-text {
  background: linear-gradient(135deg, #5fc3c8 0%, #4ecdc4 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(95, 195, 200, 0.3);
}

.info-box {
  background: #f8f9fa;
  border-left: 5px solid #ffa726;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 10px;
}

.info-box p {
  margin: 8px 0;
  font-size: 16px;
  color: #444;
}

.info-box strong {
  color: #2c3e50;
  font-weight: 600;
}

/* 联系信息样式 */
.contact-info {
  background: #ffffff;
  color: #333;
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.contact-info h2 {
  color: #2c3e50;
  border-bottom: 3px solid #5fc3c8;
}

.contact-info p {
  color: #555;
  font-size: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  background: #f0f2f5;
}

.contact-item strong {
  min-width: 120px;
  font-size: 18px;
  color: #2c3e50;
}

/* 条款列表样式 */
.terms-section {
  margin: 40px 0;
}

.terms-list {
  margin: 20px 0;
  padding-left: 20px;
}

.terms-list li {
  margin: 12px 0;
  line-height: 1.8;
  color: #555;
}

/* 底部导航样式 */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 50px 40px 30px;
  margin-top: auto;
  width: 100%;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  background: rgba(95, 195, 200, 0.3);
  transform: translateY(-2px);
}

.footer-info {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0;
  text-align: center;
}

.copyright {
  font-size: 15px;
  margin-bottom: 20px;
  color: white;
}

/* 装饰元素 */
.decoration-circle {
  position: fixed;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: #5fc3c8;
  top: 10%;
  right: 5%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background: #ffa726;
  bottom: 15%;
  left: 8%;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background: #ffd700;
  top: 60%;
  right: 15%;
}

/* 响应式设计 */
@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }

  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
}