.footer {
  background-color: var(--primary-navy);
  color: white;
  padding-top: var(--padding-lg);
  margin-top: auto;
}

.footerContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: var(--padding-lg);
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logoImage {
  height: 45px;
  width: auto;
}

.description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.columnTitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.linkList, .contactList {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.linkList a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.linkList a:hover {
  color: var(--accent-gold);
}

.contactList li {
  color: rgba(255, 255, 255, 0.7);
}

.footerBottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
