.site-footer {
  background-color: var(--background-color-accent);
  color: #000;
  padding-top: 2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 2rem;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  scroll-snap-align: start;
  font-family: "Figtree", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-left-group {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.footer-intro h2 {
  color: var(--text-color);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0px;
}

.footer-intro .subtitle {
  color: var(--text-color-secondary);
  margin-top: 0.5rem;
}

.footer-intro .subtitle a {
  margin-left: 20px;
}

.footer-intro .copyright {
  color: var(--text-color-secondary);
  margin-top: 5.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.footer-column h3 {
  color: var(--text-color);
  margin-top: 6px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0px;
}

.heading-underline {
  height: 2px;
  background-color: var(--text-color);
  margin-top: 0.5rem;
  width: 4rem;
  border-radius: 20px;
}

.chat-underline {
  width: 9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.footer-links li {
  margin-top: 0.75rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social-links {
  display: flex;
  align-items: center;
  font-size: 25px;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-links a {
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
}

.footer-social-links a:hover {
  opacity: .75;
}

/* Media Queries */
/* Media Queries for Width */

/* Mid-sized screens */
@media (max-width: 935px) {
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-left-group {
    flex-direction: row;
    gap: 2.5rem;
  }
}

/* Small screens */
@media (max-width: 767px) {
  .site-footer {
    padding: 2rem;
  }

  .footer-left-group {
    flex-direction: column;
  }

  .footer-intro .copyright {
    margin-top: 1rem;
  }
}