/* Footer */
.footer {
    background-color: #fcefed;
    padding: 40px 20px;
    color: #5e4436;
    font-size: 0.95rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .footer-logo img {
    height: 200px;
    /* margin-bottom: 12px; */
  }
  
  .footer-logo p {
    max-width: 300px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 6px 0;
  }
  
  .footer-links a,
  .footer-contact a {
    color: #5e4436;
    text-decoration: none;
  }
  
  .footer-contact .social a {
    display: inline-block;
    margin-top: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
  }


  @media screen and (max-width: 1024px) {
    .footer-logo img {
      height: 160px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .footer-columns {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo img {
      height: 140px;
      margin-bottom: 20px;
    }
  
    .footer-logo p {
      max-width: 100%;
      margin: 0 auto 20px;
    }
  
    .footer-links,
    .footer-contact {
      margin-bottom: 20px;
    }
  
    .footer-links ul li {
      margin: 4px 0;
    }
  
    .footer-bottom {
      font-size: 0.75rem;
      padding-top: 15px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .footer {
      padding: 30px 15px;
    }
  
    .footer-logo img {
      height: 100px;
    }
  
    .footer p,
    .footer a {
      font-size: 0.9rem;
    }
  
    .footer-bottom {
      font-size: 0.7rem;
    }
  }
  