
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Saal Digital</title>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
  <link href="https://photoservice.cloud/assets/SgwIcons/icons.css?tstamp=1234123124" rel="stylesheet">
  <style>
    :root {
      --sd-primary: #4269AE;     /* Saal Blue */
      --sd-primary-cta: #3669c4; /* Saal CTA Blue */
      --sd-dark: #383838;         /* Saal Dark */
      --sd-bg: #fbfbfb;           /* Saal Light BG */
      --sd-white: #ffffff;
      --sd-border: #d8d8d8;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'SourceSansPro-Regular', 'Inter', 'Segoe UI', sans-serif;
      background: var(--sd-bg);
      color: var(--sd-dark);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    .nav {
      background: var(--sd-white);
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      border-bottom: 3px solid var(--sd-primary);
    }
    .nav img { height: 32px; width: auto; }
    .content {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card {
      background: var(--sd-white);
      width: 100%;
      max-width: 420px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .card-top {
      background: var(--sd-primary);
      padding: 35px 25px;
      text-align: center;
    }
    .icon-wrapper {
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
    }
    .icon-wrapper svg {
      width: 24px;
      height: 24px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }
    .card-top h1 {
      font-size: 20px;
      font-weight: 700;
      color: var(--sd-white);
      line-height: 1.3;
    }
    .gray-text {
      color: rgba(255, 255, 255, 0.6);
    }
  </style>
</head>
<body>
  <nav class="nav">
    <img src="https://photoservice.cloud/languagesportal/images/625fd79e-126a-45d9-9a32-6f1ba219e94e.svg" alt="Saal Digital Logo">
  </nav>
  <div class="content">
    <div class="card">
      <div class="card-top">
        <div class="icon-wrapper">
          <svg viewBox="0 0 24 24">
            <circle cx="12" cy="12" r="10" />
            <path d="M8 14s1.5 2 4 2 4-2 4-2" />
            <line x1="9" y1="9" x2="9.01" y2="9" stroke-linecap="round" />
            <line x1="15" y1="9" x2="15.01" y2="9" stroke-linecap="round" />
          </svg>
        </div>
        <h1>Your location is <span class="gray-text">not allowed</span></h1>
      </div>
    </div>
  </div>
</body>
</html>