.footer {
  background-color: #1e1e1ecc;
  color: #f1f1f1;
  padding: 40px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
  color: #00bcd4;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-social .social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #f1f1f1;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
.site-footer a {
  color: #00bcd4;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
