footer {
  background-color: var(--footer-foreground);
  color: var(--secondary-font-color);
 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .text-center-md-left {
    text-align: left;
  }
}

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

.logo-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--background);
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

.logo-circle img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.agency-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.agency-name .primary {
  color: var(--official-green);
}

.agency-name .secondary {
  color: var(--official-brown);
}

h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 0.5rem;
}

.footer-link {
  text-decoration: none;
  color: var(--background);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-menu-link {
  color: var(--official-green);
}

.footer-menu-link:hover {
  color: #fff;
}

.text-muted {
  color: rgba(255, 255, 255, 0.8);
}

.text-muted-sm {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.icon-list {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
