    body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Arial, sans-serif;
      background: #0E1F53;
      color: white;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
      box-sizing: border-box;
    }

    .card {
      max-width: 700px;
    }

.logo {
  width: 180px;
  max-width: 80%;
  margin-bottom: 25px;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

    h1 {
      font-size: 34px;
      margin-bottom: 14px;
      font-weight: 800;
    }

    p {
      font-size: 18px;
      line-height: 1.6;
      margin: 0 0 10px;
      opacity: 0.95;
    }

    .contact-info {
      margin-top: 28px;
      font-size: 17px;
      line-height: 1.8;
      color: rgba(255,255,255,0.92);
    }

    .contact-info div {
      margin: 3px 0;
    }

    .tag {
      margin-top: 30px;
      font-size: 13px;
      opacity: 0.75;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    @media (max-width: 768px) {

      .logo {
        width: 140px;
      }

      h1 {
        font-size: 28px;
      }

      p {
        font-size: 16px;
      }

      .contact-info {
        font-size: 15px;
      }
    }
