.site-footer {
  background: #fff3e0;
  color: #333;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-about, .footer-links, .footer-contact {
  flex: 1 1 200px;
}
.footer-about h3, .footer-links h3, .footer-contact h3, .footer-partners h3 {
  color: #BF360C;
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin: 0.5rem 0; }
.footer-links a { color: #333; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #FF6F00; }

.footer-partners {
  text-align: center;
  margin-bottom: 2rem;
}
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.partner-logos img {
  width: 80px; background: #fff; padding: 0.5rem;
  border-radius: 8px; transition: transform 0.3s;
}
.partner-logos img:hover {
  transform: scale(1.05);
}
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  text-align: center;
}
.social-icons a {
  display: inline-block;
  margin: 0 0.5rem;
}
.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.credit {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}
.credit a {
  color: #ff6f00;
  text-decoration: none;
}
.credit a:hover {
  text-decoration: underline;
}
