.site-footer {
  background-color: #222;
  color: #f0f0f0;
  padding: 3rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-logo {
  color: #5cb85c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #5cb85c;
}

.footer-contact p,
.footer-contact a {
  color: #ccc;
  line-height: 1.5;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #5cb85c;
}