.app-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 32px 20px 16px;
  margin-top: 40px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #34a85a;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}
.footer-links a:hover {
  color: #34a85a;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
}

.footer-social a {
  color: #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #34a85a;
  color: #fff;
}

.footer-disclaimer {
  background: #2a2a2a;
  border-left: 3px solid #34a85a;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
}
.footer-disclaimer i {
  color: #34a85a;
  margin-right: 6px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #888;
}
