/* Footer CSS */
.site-footer {
  background-color: #1a1a1a;
  color: #f2f2f2;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer h2, .site-footer h3 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact a {
  color: #f2f2f2;
  text-decoration: none;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-social a img {
  width: 24px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
