.site-footer {
  background-color: #111;
  color: #ddd;
  font-size: 14px;
  padding: 2rem 1rem;
  border-top: 1px solid #222;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-title {
  color: #ff5500;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer-text {
  line-height: 1.6;
  margin: 0;
}

.footer-heading {
  color: #ff5500;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff5500;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #ddd;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ff5500;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem; /* ↓ tighter spacing */
    margin-bottom: 1rem;
  }

  .footer-col {
    margin-bottom: 0;
    flex: 1 1 5px;
  }

  .footer-col:last-child {
    margin-bottom: 0;
  }
}

