.site-footer {
  background-color: transparent;
  padding: 30px;
  width: 100%;
  color: var(--hero-background-color);

  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section > span:first-of-type 
{
    font-size: 1.1rem;
    font-weight: 900;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
}

.footer-section a {
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  color: inherit;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.footer-brand svg 
{
    width: 70%;
}