:root {
      --main-bg: #f7fafc;
      --main-blue: #2779c6;
      --main-accent: #a0c9e6;
      --main-text: #222;
    }
    html, body {
      height: 100%;
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: var(--main-bg);
      color: var(--main-text);
    }
    body {
  padding: 1rem;
}
    .card {
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 6px 30px rgba(39,121,198,0.08);
      max-width: 600px;
      padding: 2.5rem 2rem;
      text-align: center;
      margin: 2rem;
    }
    .logo-img {
      width: 220px;
      max-width: 100%;
      height: auto;
      margin-bottom: 1.2rem;
      margin-top: 0.5rem;
    }
    blockquote.tagline {
      font-size: 1.3rem;
      color: var(--main-blue);
      font-weight: 500;
      line-height: 1.6;
      margin: 2rem auto;
      padding: 1.2rem 1.8rem;
      border-left: 4px solid var(--main-accent);
      background: #fff;
      max-width: 600px;
      box-shadow: 0 4px 20px rgba(39,121,198,0.05);
      border-radius: 8px;
      font-style: italic;
    }
    .highlight {
      background: var(--main-accent);
      color: #fff;
      padding: 0.1em 0.4em;
      border-radius: 4px;
      font-style: normal;
    }
    .coming-soon {
      display: inline-block;
      margin-top: 1.4rem;
      background: var(--main-blue);
      color: #fff;
      font-weight: 600;
      letter-spacing: 1px;
      border-radius: 2rem;
      padding: 0.7rem 1.7rem;
      font-size: 1.12rem;
      box-shadow: 0 2px 12px rgba(39,121,198,0.07);
      transition: background 0.2s;
      text-decoration: none;
    }
    .page-wrapper {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      box-sizing: border-box;
    }
    .coming-soon:hover {
      background: #205d97;
    }
    .contact {
      margin-top: 1.5rem;
      font-size: 0.95rem;
      color: #888;
    }
    .contact a {
      color: var(--main-blue);
      text-decoration: none;
    }
    @media (max-width: 500px) {
  .card {
        max-width: 94vw;
        padding: 1.5rem 1rem;
  .coming-soon {
    font-size: 1rem;
    padding: 0.6rem 1.3rem;
  }
}
      .logo-img {
        width: 160px;
      }
      blockquote.tagline {
        font-size: 1.1rem;
      }
    }