.site-footer, .site-footer * { box-sizing: border-box; }
.site-footer p { margin: 0; }

.site-footer {
  background: #333333;
  color: #fff;
  padding: 40px 20px;
}
.site-footer-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.footer-logo {
  height: 18px;
  width: auto;
  display: block;
}
.footer-copyright {
  font-size: 12px;
}
.footer-info {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.footer-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-links a:hover {
  color: #fff;
}
@media (max-width: 600px) {
  .site-footer { padding: 32px 20px; }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-brand { align-items: center; }
  .footer-links {
    align-items: center;
    text-align: center;
  }
}
