    body {
      margin: auto;
      font-family: 'Tenor Sans', sans-serif;
      background: #f8f8f8;
      direction: rtl;
      text-align: center;
    }

    img {
      width: 200px;
      height: 30px;
      margin-top: 40px;
      cursor: pointer;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      transition: all 0.2s ease;
    }

    img:hover {
      transition: all 0.2s ease;
      transform: translateY(-5px);
    }

    .card {
      background: white;
      border-radius: 24px;
      width: clamp(320px, 52.083vw, 600px);
      margin: 3.75rem auto;
      padding: 40px 20px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    }

    h1 {
      font-size: clamp(22px, 52.083vw, 26px);
      font-weight: 700;
      font-family: 'Assistant';
      text-align: center;
    }

    h4 {
      font-family: 'Assistant';
      font-size: clamp(14px, 52.083vw, 16px);
      color: #595959;
      font-weight: 500;
      text-align: center;
    }

    p {
      font-size: clamp(14px, 52.083vw, 16px);
      margin: 0.625rem 0;
      color: #595959;
      text-align: center;
    }

    strong {
      font-weight: 600;
    }

    .contact {
      font-size: clamp(10px, 52.083vw, 13px);
      font-weight: 300;
      direction: ltr;
      text-align: center;
    }

    button {
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .btn {
      margin-top: 1.25rem;
      background-color: black;
      color: white;
      border: none;
      border-radius: 16px;
      padding: 12px 24px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn:hover {
      transition: all 0.2s ease;
      transform: translateY(-5px);
    }

    .btn:active {
      transform: translateY(5px);
      color: black;
      background-color: silver;
      box-shadow: 1px 5px 7px silver;
      background-image: linear-gradient(to bottom right, white, silver);
      box-shadow: none;
    }