 body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to bottom, #0f3d2e, #1c5c45);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
    }

    .container {
      max-width: 600px;
      padding: 2rem;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 1rem;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    h1 {
      font-size: 5rem;
      margin: 0;
      color: #ffdd57;
    }

    h2 {
      font-size: 2rem;
      margin: 1rem 0;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .logo {
      width: 120px;
      margin-bottom: 1rem;
    }

    a.button {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background-color: #ffdd57;
      color: #0f3d2e;
      font-weight: bold;
      border-radius: 0.5rem;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    a.button:hover {
      background-color: #ffc107;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 3rem;
      }

      h2 {
        font-size: 1.5rem;
      }
    }