footer {
    background-color: #000;
    color: white;
    padding: 40px 0 0 0;
    margin-top: auto;
  }
  
  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  .footer-logo .logo-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
  }
  
  .footer-description {
    margin-right: 40px;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 250px;
    padding-right: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 15px;
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .footer-section p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-section i {
    margin-right: 10px;
    font-size: 1.2em;
  }
  
  .copyright {
    border-top: 1px solid #555;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  .copyright p {
    margin: 0;
    font-size: 0.9rem;
  }

  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 30px;
    }
  }
  