/* Subtle heading for SEO, visually light */
/* Footer heading matches copyright color and vertical alignment */
.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-heading {
  font-size: 1rem;
  color: #b3c2c8; /* match other footer text color */
  text-align: left;
  margin: 0;
  font-weight: 400;
}
.site-footer {
  margin-top: 12rem;
  background-color: #06283d;
  color: #fff;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-footer-top a {
  margin-top: 12rem;
  background-color: #06283d;
  color: #fff;
}

@media (min-width: 60rem) {
  .site-footer {
    margin-top: 16rem;
  }
}

/* Mobile-specific footer padding */
@media (max-width: 768px) {
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .footer-columns {
    gap: 1.5rem;
  }
  
  .footer-col h5 {
    font-size: 1rem;
  }
  
  .footer-links a,
  .footer-contact li {
    font-size: 0.85rem;
  }
}
.site-footer-top {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-direction: column;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer columns styling */
.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 50rem) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-col {
  flex: 1;
}

.footer-col h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact li {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 50rem) {
  .site-footer-top {
    align-items: center;
    flex-direction: row;
  }
}
.site-footer-contact > * + * {
  margin-top: 0.5rem;
}
.site-footer-contact span {
  display: block;
}
.site-footer-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
  flex-direction: column-reverse;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}
@media (min-width: 50rem) {
  .site-footer-bottom {
    align-items: flex-end;
    flex-direction: row;
  }
}
.site-footer-bottom a {
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  margin-left: 4px;
  font-size: 18px;
}
.site-footer-bottom a:hover {
  animation: SivulabraAnimation 1s ease-in-out infinite;
  opacity: 0.6;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}
.footer-menu ul li {
  margin: 1rem 0;
}
.footer-menu ul li a {
  color: #FFF;
  padding: 0.25rem 0;
  font-size: 24px;
}
.footer-menu ul li a:hover {
  text-decoration: underline;
}
