.site-footer.hsac-global-footer {
  --hsac-footer-bg: #081c2f;
  --hsac-footer-bg: var(--nav-dark, #081c2f);
  --hsac-footer-line: rgba(203, 213, 225, 0.18);
  --hsac-footer-line: var(--nav-line, rgba(203, 213, 225, 0.18));
  background-color: var(--hsac-footer-bg);
  color: #cbd5e1;
  margin-top: 30px;
  border-top: 1px solid var(--hsac-footer-line);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.site-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  width: 100%;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}

.site-footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-sep {
  color: rgba(203, 213, 225, 0.45);
  user-select: none;
}

.site-footer-lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}

.site-footer-lang-btn {
  border: none;
  background: transparent;
  color: #cbd5e1;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.site-footer-lang-btn:hover,
.site-footer-lang-btn.is-active {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-lang-btn:not(.is-active) {
  opacity: 0.85;
}

.site-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  width: 100%;
}

.site-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.site-footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.92;
}

.site-footer-contact-item a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer-contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-copy {
  margin: 0;
  color: #95a3b7;
  font-size: 13px;
}

@media (max-width: 640px) {
  .site-footer-top {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}
