/* Footer Styles */

.site-footer {
  color: #616161;
  padding: 2rem 0;
  max-width: var(--maxwidth);
  margin: 0 auto;
}

.site-footer p {
  text-align: center;
}

.footer-widget-area {
  margin-bottom: 2rem;
}

.footer-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-navigation a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: var(--primary);
}

.site-info {
  font-size: 1rem;
}

/* Footer Links Container */
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
}

/* Social Link (Left) */
.social-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #0073aa;
}

/* Legal Link (Right) */
.legal-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #0073aa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .social-link,
  .legal-link {
    font-size: 1.2rem;
  }
}




/* Footer */
.site-footer {
    padding: 2rem 1rem;
    text-align: center;
    font-size: 1rem;
  }
  
  .footer-content {
    max-width: 120rem;
    margin: 0 auto;
  }
  
  .footer-text {
    color: #ccc;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }