 footer.footer-tt {
    background: #000;
    color: #fff;
    font-family: &#39;Segoe UI&#39;, sans-serif;
    border-top: 3px solid #e60000;
   transform: translateY(-20px);
  }

  .footer-tt .container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px 30px;
  }

  .footer-tt .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }

  .footer-tt h4 {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
  }

  .footer-tt .footer-logo {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .footer-tt a {
    color: #7dc8ff;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 5px 0;
  }

  .footer-tt a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .app-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .app-buttons img {
    width: 135px;
    height: auto;
  }

  .footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0 10px;
  }

  .footer-icons img {
    height: 45px;
    filter: brightness(1.2);
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    padding: 15px 10px;
    background: #111;
    border-top: 1px solid #333;
  }

  @media (max-width: 768px) {
    .footer-tt .row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .app-buttons {
      justify-content: center;
    }

    .footer-icons {
      padding: 20px 0 10px;
    }

    .footer-icons img {
      height: 36px;
    }
  }