    body {
      margin: 0;
      padding: 0;
      background-color: #461145;
      font-family: "Century Gothic", sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 100vh;
      text-align: center;
    }

    main {
        flex: 1;
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* not fully centered */
        margin-top: 1rem; /* adjust as needed */
    }

    footer {
        font-family: "Century Gothic", sans-serif;
        color: #eab00a;
        font-size: 18px;
        text-align: center;
        padding: 1.5rem;
    }

    .logo {
      margin: 40px 0 30px 0; /* increased bottom margin */
      max-width: 300px;
      width: 80%;
      height: auto;
    }

    h1 {
      font-size: 18px;
      font-weight: bold;
      color: white;
      margin-bottom: 40px; /* extra space below as well */
      line-height: 1.4;
    }

    h1 .highlight {
      color: #eab00a;
    }

    .button-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 90%;
      max-width: 400px;
    }

    .link-button {
      display: block;
      text-align: center;
      padding: 15px;
      border: 2px solid #eab00a;
      border-radius: 25px;
      color: #eab00a;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      background: transparent;
      transition: all 0.3s ease;
    }

    .link-button:hover {
      background-color: #eab00a;
      color: #461145;
    }