/* 网站信息区域样式 */
.website-info {
  background: #2a2e32;
  border-top: 1px solid #444a51;
  padding: 30px 0;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1;
}

.footer-section h3 {
  color: #e0e0e0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444a51;
}

.footer-section p {
  color: #aaa;
  line-height: 1.6;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444a51;
}

.copyright p {
  color: #aaa;
  font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  
  .guide-item {
    width: 100%;
  }
}