body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: rgba(213,213,213,1); /* jasnoszare tło */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .container {
      background-color: #fff; /* biały kontener */
      padding: 30px;
      border-radius: 12px;
        border: 1px solid rgba(128,128,128,0.5);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      max-width: 400px;
      width: 90%;
      text-align: center;
    }

    .description {
      font-size: 16px;
      margin-bottom: 20px;
      color: #333;
    }

    .buttons {
      display: flex;
      gap: 30px;
      flex-direction: row;
    }

    .button-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .button-block p {
      margin: 0 0 8px;
      font-size: 14px;
      padding: 8px;
      color: rgba(128,128,128,1);
    }

    .button-block a {
      display: block;
      width: 100%;
      text-decoration: none;
      background-color: rgba(243, 159, 14, 1);
      color: black;
      padding: 18px;
      border-radius: 8px;
      text-align: center;
        font-size: 14px;
      font-weight: 600;
      transition: background 0.3s;
    }

    .button-block a:hover {
      background-color: rgba(243, 179, 4, 1);
    }

    /* Mobile – przyciski w pionie */
    @media (max-width: 600px) {
      .buttons {
        flex-direction: column;
      }
    }