footer {
    width: 100%;
    padding: 2rem 0;
    text-align: left;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .footer-container > div {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
  }
  
  .contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--contrast-color);
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  
  .contact-item:hover {
    transform: translateX(5px);
    color: var(--highlight-color);
  }
  
  .hosted, .unhosted {
    display: flex;
    flex-direction: column;
    gap: 1rem;
   
  }
  
  .git-links {
    text-decoration: none;
    color: var(--contrast-color);
    transition: color 0.3s ease;
  }
  
  .git-links:hover {
    color: var(--highlight-color);
  }
  
  .git-links p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--contrast-color);
  }
  
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-container > div {
      width: 100%;
      text-align: center;
    }
  
    .contact-list {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .contact-item {
      flex-direction: column;
    }
  
    .contact-item i {
      margin-right: 0;
      margin-bottom: 0.5rem;
    }
  }