 :root{
      --bg:#ffffff;
      --text:#0F5073;
    }
    *{box-sizing:border-box; margin:0; padding:0}
    html, body {height:100%; overflow:hidden;}
    body{
      font-family:Inter,system-ui,Segoe UI,Roboto,"Helvetica Neue",Arial;
      background:var(--bg);
      color:var(--text);
      display:flex;
      align-items:center;
      justify-content:center;
      padding:24px;
    }
    .container{
      width:100%;
      max-width:720px;
      background:#ffffff;
      border-radius:16px;
      padding:36px;
      box-shadow:0 4px 20px rgba(0,0,0,0.05);
      border:1px solid rgba(0,0,0,0.05);
      text-align:center;
    }
    .logo{

      margin:0 auto 20px auto;
      border-radius:14px;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#ffffff;
    }
    .logo img{width:50%;}
    h1{font-size:28px; letter-spacing:-0.3px; color:var(--text)}
    p.lead{margin:10px 0 20px 0; color:var(--text)}
    .contact{ border-radius:12px; display:inline-block; text-align:left; padding-top:10px;padding-bottom:10px}
	    .contact p{ margin-top:20px}
    .contact a{color:var(--text); text-decoration:none}
    footer{margin-top:30px; text-align:center; color:var(--text); font-size:13px}