body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #fafafa;
    color: #000001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
  }

  .logo {
    max-width: 100px;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
  }

  p {
    max-width: 500px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .contact {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }

  a {
    color: #063b39;
    text-decoration: none;
  }

  .button {
    background-color: #063b39;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
