.site-footer {
  width: 95%;
  margin: 0 auto;
  padding: 15px 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}

.footer-left {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left img {
  width: 135px;
  height: 72px;
  border: 0;
}

.footer-right {
  width: 60%;
  text-align: center;
}

.footer-right hr {
  margin: 6px auto;
  border: 0;
  border-top: 1px solid #999;
  width: 80%;
}

.footer-right p {
  margin: 4px 0;
}

/* External link indicator */
.external-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.external-link::after {
  content: " ↗";
  font-size: 0.9em;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
.footer-left a:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 10px;
  }
}
