/* Footer Styling */
.footer {
  background-color: #106b59;
  color: #fff;
  padding: 2rem 2rem;
  font-size: 0.9rem;
  margin: 3em auto;
	border-radius: 8px;
}
footer {
  border-top: 0;
  background-color: #000;
}
.footer a {
  color: #fff;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footer-column {
  flex: 1 1 23%;
  min-width: 200px;
}
.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.3rem;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 15px;
}
.footer-menu li:before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-menu a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 2px solid #fff;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-column {
    flex: 1 1 100%;
  }
}