
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
        font-family: 'Tajawal', sans-serif;
      color: #2f7ea1;
      display: flex;
      padding: 1.5rem;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      flex-direction: column;
      gap: 5rem;
    }

    @media (min-width: 1024px) {
      body {
        padding: 2rem;
      }
    }

    .card {
      display: flex;
      padding: 2.5rem 2rem;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      border: 1px solid #e5e7eb;
      border-radius: 1.5rem;
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
      background-color: rgba(255, 255, 255, 0.8);
      gap: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .logo-wrapper {
      display: flex;
      width: 12rem;
      height: 12rem;
      background-color: rgba(255, 255, 255, 0.8);
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .logo-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .logo-wrapper img:hover {
      transform: scale(1.1);
    }

    .text-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .text-content h1 {
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: -0.025em;
      margin-bottom: 1rem;
      text-align: center;
      color: #000;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }

    .text-content span {
      text-align: center;
      font-size: 1.125rem;
      letter-spacing: 0.05em;
    }