.site-footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.footer-description p {
  margin-bottom: 16px;
  text-align: left;
}

.footer-description p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 16px 20px;
    margin-top: 60px;
  }

  .footer-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-description p {
    margin-bottom: 14px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}
