.site-footer {
  background: var(--white);
  color: #2f5d8c;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.site-footer strong,
.partners-title {
  color: #2f5d8c;
  font-weight: 800;
  font-size: 1.3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 2rem;
  gap: 2rem;
}

.footer-left,
.footer-right {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0.2rem 0;
}

.footer-left {
  text-align: center;
  line-height: 1.6;
}

.footer-right {
  text-align: center;
}

.footer-bottom {
  font-size: 1rem;
  opacity: 0.85;
}

.partners-title {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-right p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.address-link {
  color: #2f5d8c;
  text-decoration: none;
}

.address-link:hover {
  color: #c9a24d; /* gold hover accent */
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.phone-link:hover {
  color: var(--gold-accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center; /* center the divs themselves */
    text-align: center; /* center the text inside */
    gap: 1.5rem;
    width: 100%;
  }

  .footer-left,
  .footer-right {
    order: unset; /* order doesn’t matter when stacked */
    width: 100%; /* full width for proper centering */
  }

  .footer-left p,
  .footer-right p {
    margin: 0.25rem 0;
    text-align: center; /* force text centering */
  }

  .partners-title {
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .phone-link {
    display: inline-block;
    margin-top: 0.25rem;
  }
}
