/* 底部栏样式 */

#footer-placeholder {
}

.footer {
  margin-top: auto;
  box-shadow: 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

.footer h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 768px) {
  .footer {
    font-size: 0.9rem;
    padding: 1rem 0 !important;
  }
  
  .footer h5 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    font-size: 0.8rem;
    padding: 0.8rem 0 !important;
  }
  
  .footer h5 {
    font-size: 0.9rem;
  }
}

/* 信息区域样式 */
.info-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 6.3rem;
  /* 移除 scroll-snap-align 以防止长内容滚不动 */
}

.info-block {
  margin-left: auto;
  margin-right: auto;
}

.info-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.info-content {
  color: #015f4d;
  line-height: 1.4rem;
  font-size: 1rem;
}

.info-content ul li {
  line-height: 1.8;
}

.legal-info {
  margin-top: 3rem;
}

/* 响应式调整 */
@media (max-width: 991.98px) {
  .info-section {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
    margin-bottom: 4rem;
  }

  .info-title {
    font-size: 1.3rem;
  }

  .info-content {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}

@media (max-width: 576px) {
  .info-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
  }

  .info-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .info-content {
    font-size: 0.85rem;
    line-height: 1.25rem;
  }

  .info-block {
    margin-bottom: 2rem !important;
  }

  .info-block.pt-4 {
    padding-top: 1.5rem !important;
  }
}
