footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f8f8;
    flex-wrap: wrap;
  }
  
  .footer-left {
    flex: 1;
    max-width: 300px;
    text-align: center;
  }
  
  .footer-left img {
    display: block;
    margin: 0 auto;
  }
  
  .footer-left p {
    text-align: center;
    margin-top: 10px;
  }
  
  .footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer-right {
    flex: 1;
    text-align: right;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .footer-links li {
    margin: 0 15px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #000;
  }
  
  .social-media {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .social-media a {
    margin: 0 10px;
    color: #000;
    font-size: 24px;
  }
  
  .footer-right p {
    margin: 5px 0;
  }
  
  @media (max-width: 768px) {
    footer {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-left, .footer-right {
      text-align: center;
    }
  
    .footer-right {
      margin-top: 20px;
    }
  }
  