/* Footer Container */
.footer {
    background: #a17a52; /* Coffee-brown */
    color: #fff;
    padding: 2rem 4rem;
    font-family: Poppins, sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    gap: 2rem;
  }

  .footer-content > div{
    width: 30%;
  }
  
  /* Branding Section */
  .footer-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-left: -4rem;
  }
  
  .footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
  }
  
  .branding-text h3 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #ffcc5c;
  }
  
  .branding-text p {
    margin: 0;
    font-size: 14px;
  }
  

  .links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Links Section */
  .links h4,
  .contact h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #ffcc5c;
    text-align: center;
  }
  
  .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .links li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .links li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 5px;
  }
  
  .links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  .links a:hover {
    color: #ffcc5c;
  }
  
  /* Contact Section */

  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .contact-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .contact-element img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .contact-element p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Responsive: Mobile */
  @media only screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-branding {
      flex-direction: column;
    }
  
    .footer-logo {
      width: 80px;
      height: 80px;
    }
  }
  