.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0 0 2rem;

  .footerContainer {
    margin-inline: auto;
    text-align: center;
  }

  .footerNav {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-bottom: 2rem;

    ul {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 600px;
      margin: 0 auto;

      @media (width >= 768px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 2rem;
      }

      li {
        a {
          color: var(--color-white);
          text-decoration: none;
          transition: opacity 0.3s ease;

          &:hover {
            opacity: 0.8;
          }
        }
      }
    }
  }

  .footerLogo {
    margin: 2rem auto;
    width: 200px;
    
    img {
      width: 100%;
      height: auto;
    }
  }

  .footerAddress {
    margin-top: 2rem;
    text-align: center;
    line-height: 1.8;

    address {
      font-style: normal;
      margin-bottom: 1rem;
    }

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

  .copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}