/* ===== Footer ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-left h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  color: #aaa;
  max-width: 250px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin: 4px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #777;
}

/* ===== 移动端 ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left p {
    margin: auto;
  }
}