.global-site-footer {
    background: var(--brand-green-light);
    padding: 30px 0 0 0; 
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 64px;
    padding-bottom: 30px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-navigation-anchor {
    color: var(--text-light);
    border-bottom: 0px;
    text-decoration: none;
    position: relative;
    padding: 0.2em 0;
    transition: color 0.2s ease;
}

.footer-navigation-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: var(--text-light);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}

.footer-navigation-anchor:hover::after,
.footer-navigation-anchor:focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
  transform: scale(1);
}

.footer-navigation-anchor::after {
  opacity: 1;
  transform: scale(0);
  transform-origin: center;
}

.footer-logo-anchor {
    display: block;
    margin-bottom: 24px;
}

.footer-logo-anchor img {
    width: 200px;
    height: auto;
    display: block;
}

.footer-brand-bio {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 28px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-weight: 900;
    margin-bottom: 28px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list li {
    font-size: 0.92rem;
    color: var(--text-light);
}

.footer-links-list .highlight-link {
    color: #ffffff;
    font-weight: 700;
}

.label-muted {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
}

.text-white {
    color: #ffffff;
}

.sub-footer-compliance-bar {
    background: var(--brand-green-dark);
    padding: 15px 0;
    width: 100%;
}

.sub-footer-inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-regions-text {
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 50%;
    line-height: 1.5;
}

.sub-footer-credits-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    gap: 4px;
}

.dev-attribution a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 0px;
    font-weight: 700;
    transition: color 0.2s ease, border-bottom 0.2s ease;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.socials .social-icon {
    width: 25px;
    height: auto;
}

@media (max-width: 1024px) {
    .footer-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .footer-brand-column {
        grid-column: span 2;
        margin-bottom: 12px;
    }
    .sub-footer-inner-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-regions-text {
        max-width: 100%;
    }
    .sub-footer-credits-group {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .global-site-footer {
        padding-top: 64px;
    }
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand-column {
        grid-column: span 1;
    }
    .footer-column-title {
        margin-bottom: 16px;
    }
}