  footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 32px 12px 18px 12px;
	padding-bottom: 100px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #fff;
  }
  .footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
  }
  .logo-footer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 68px;
  }
  .logo-footer img {
    max-width: 68px;
    max-height: 68px;
    display: block;
  }
  .footer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    line-height: 1.7;
    text-align: center;
    word-break: break-word;
  }
  .footer-text a {
    color: #39c2fa;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.25s;
  }
  .footer-text a:hover, .footer-text a:focus {
    color: #8fdcff;
  }
  .copyright {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #ededed;
    letter-spacing: .02em;
  }
  @media (max-width: 1100px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }
    .footer-text {
      max-width: 98vw;
      text-align: center;
    }
    .logo-footer {
      margin-bottom: 10px;
      height: auto;
    }
  }