  .tracking-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
  }

  .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 40px;
      width: 80%;
      max-width: 900px;
      border-radius: 10px;
      position: relative;
      animation: modalSlideIn 0.3s ease-out;
  }

  @keyframes modalSlideIn {
      from {
          transform: translateY(-100px);
          opacity: 0;
      }
      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  .close-modal {
      position: absolute;
      right: 20px;
      top: 15px;
      font-size: 28px;
      font-weight: bold;
      color: #666;
      cursor: pointer;
  }

  .close-modal:hover {
      color: #000;
  }

  .modal-body {
      display: flex;
      align-items: center;
      gap: 40px;
  }

  .modal-image {
      flex: 1;
      max-width: 60%;
  }

  .modal-image img {
      width: 100%;
      height: auto;
  }

  .modal-text {
      flex: 1;
      padding-right: 20px;
  }

  .modal-text h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #333;
  }

  .modal-text p {
      font-size: 16px;
      line-height: 1.6;
      color: #666;
      margin-bottom: 30px;
  }

  .app-buttons {
      display: flex;
      gap: 15px;
  }

  .app-btn {
      display: inline-block;
      transition: transform 0.2s;
  }

  .app-btn:hover {
      transform: translateY(-3px);
  }

  .app-btn img {
      height: 40px;
      width: auto;
  }

  @media (max-width: 768px) {
      .modal-body {
          flex-direction: column;
      }

      .modal-image {
          max-width: 100%;
      }

      .modal-content {
          width: 95%;
          padding: 20px;
      }

      .modal-text {
          padding-right: 0;
          text-align: center;
      }

      .app-buttons {
          justify-content: center;
      }
  }
