/* Teal/Aquamarine color scheme */
:root {
  --accent: #4db8bf;
}

/* Custom styles for footer - center social links */
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer__social a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--accent);
  opacity: 0.7;
}

.footer__social svg {
  width: 24px;
  height: 24px;
}
