/* === Sticky Footer Layout === */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .site-content {
    flex: 1;
  }
  
  /* === Footer Styles === */
  .site-footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    color: #000;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .footer-logo {
    max-width: 200px;
    height: auto;
  }
  
  .footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .footer-socials a {
    color: #000;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .footer-socials a:hover {
    color: #666;
    transform: translateY(-2px);
  }
  
  .footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-link {
    color: #666;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #000;
    text-decoration: none;
  }
  
  .footer-credit {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    padding-bottom: 20px;
  }

  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
      padding: 0 15px;
    }
    
    .footer-links {
      gap: 20px;
    }
  }

  @media (max-width: 480px) {
    .footer-links {
      flex-direction: column;
      gap: 15px;
    }
    
    .footer-socials {
      gap: 15px;
    }
  }
  