/* SST Site Footer - green bar layout */
.site-footer {
  background-color: #2f855a;
  color: #ffffff;
  padding: 35px 20px;
  margin-top: 40px;
  text-align: center;
  border-top: 4px solid #1a365d;
}

.site-footer .footer-content {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer .footer-brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.site-footer .footer-address {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 920px;
}

.site-footer .footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 15px;
  opacity: 0.95;
}

.site-footer .footer-contact-row a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-footer .footer-contact-row a:hover {
  text-decoration: underline;
  opacity: 1;
}

.site-footer .footer-contact-separator {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .site-footer .footer-brand {
    font-size: 20px;
  }

  .site-footer .footer-address,
  .site-footer .footer-contact-row {
    font-size: 14px;
  }

  .site-footer .footer-contact-separator {
    display: none;
  }

  .site-footer .footer-contact-row {
    flex-direction: column;
    gap: 8px;
  }
}
