  .site-footer {
        background: #f5f5f7;
        padding: 90px 0 40px;
        color: #1d1d1f;
      }

      .footer-container {
        max-width: 1200px;
        width: 92%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        gap: 70px;
      }

      /* LEFT */

      .footer-left {
        flex: 2;
      }

      .footer-brand h3 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .footer-brand p {
        font-size: 14px;
        color: #6e6e73;
        margin-bottom: 40px;
      }

      .footer-links {
        display: flex;
        gap: 60px;
      }

      .footer-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
      }

      .footer-column a {
        display: block;
        font-size: 14px;
        color: #6e6e73;
        text-decoration: none;
        margin-bottom: 10px;
        transition: 0.3s;
      }

      .footer-column a:hover {
        color: #000;
      }

      /* RIGHT */

      .footer-right {
        flex: 1;
      }

      .app-links h4,
      .social-links h4 {
        font-size: 14px;
        margin-bottom: 14px;
      }

      .app-buttons {
        display: flex;
        gap: 12px;
        margin-bottom: 40px;
      }

      .app-btn svg {
        width: 135px;
        height: auto;
        display: block;
      }

      .social-icons {
        display: flex;
        gap: 18px;
      }

      .social-icons a {
        color: #6e6e73;
        text-decoration: none;
        font-size: 14px;
      }

      .social-icons a:hover {
        color: #000;
      }

      /* BOTTOM */

      .footer-bottom {
        max-width: 1200px;
        width: 92%;
        margin: 60px auto 0;
        padding-top: 20px;
        border-top: 1px solid #d2d2d7;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #6e6e73;
      }

      .legal-links a {
        margin-left: 20px;
        text-decoration: none;
        color: #6e6e73;
      }

      .legal-links a:hover {
        color: #000;
      }

      /* TABLET */

      @media (max-width: 900px) {
        .footer-container {
          flex-direction: column;
          gap: 40px;
        }

        .footer-links {
          gap: 40px;
        }

        .footer-right {
          margin-top: 20px;
        }
      }

      /* MOBILE */

      @media (max-width: 600px) {
        .site-footer {
          padding: 60px 0 30px;
        }

        .footer-links {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 30px;
        }

        .app-buttons {
          flex-direction: row;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 12px;
        }

        .legal-links a {
          margin-left: 0;
          margin-right: 16px;
        }
      }