/* Footer styles */

.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2rem 0 1rem;
}

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

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.site-footer a {
  color: #dceeff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: #dceeff;
}

.social-links {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 10px;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.2s;
  padding-right: 0.2rem;
}

.social-links .follow-us a {
  color: white;
  font-size: 2rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #0077b5; /* Change to any color you like */
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}