footer {
    background: #c7e7ef;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
  }

  .footer-logo {
    flex: 1;
    min-width: 200px;
  }

  .footer-nav {
    flex: 1;
    min-width: 200px;
  }

  .footer-nav a {
    text-decoration: none;
    color: #1d1d1dad;
    font-weight: 600;
}

  .footer-contact {
    flex: 1;
    min-width: 200px;
  }

  .footer-logo h3 {
    color: #00b050;
    font-size: 18px;
    margin: 0;
  }

  .footer-logo span {
    color: #0070c0;
    font-weight: bold;
  }

  .footer-nav h4, .footer-contact h4 {
    color: green;
  }

  .footer-nav ul, .footer-contact ul {
    list-style: none;
    padding: 0;
  }

  .footer-nav li, .footer-contact li {
    margin: 6px 0;
  }

  .footer-contact a {
    text-decoration: none;
    color: white;
    background: #007bff;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 0;
  }

  .footer-contact a.whatsapp {
    background: #25d366;
  }

  .copyright {
    text-align: center;
    background: #D8EDF2;
    padding: 10px;
    font-size: 12px;
    color: #333;
  }

