 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #000;
      line-height: 1.6;
    }

    .nadpis {
      text-align: center;
      font-size: 2.5rem;
      font-weight: bold;
      margin: 40px 0 30px;
      letter-spacing: 0.5px;
    }

    .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 20px;
        }

    .text-box {
        max-width: 800px;
    }

    .text-box p {
        padding-bottom: 2rem;
    }

    .text-box-cover {
        display: flex;
        margin-top: 5rem;
    }

    .text-box-cennik {
        
        padding-right: 5rem;
        display: flex;
        gap: 7rem;
    }

    .text-box-cennik .left-side {
        display: flex;
        flex-direction: column;
    }

      .text-box-cennik .right-side {
        display: flex;
        flex-direction: column;
    }

    .text-box-cennik2 {
        max-width: 40%;
        padding-left: 5rem;
    }

    .text-box-cover p {
        background-color: #FFDDE9;
        padding: 1rem 1rem;
        border-radius: 20px;
    }

     .text-box-cover p span {
        font-weight: bold;
        font-size: 25px;
        position: relative;
        top: 2px;
     }

     .bottom-line {
        width: 100%;
        height: 30px;
        background-color: #FFDDE9;
        margin-top: 6rem;
    }


      @media (max-width: 768px) {
        .text-box-cover {
            flex-direction: column;
        }

        .text-box-cennik{
            flex-direction: column;
        }

        .text-box-cennik, .text-box-cennik2 {
            max-width: 100%;
            padding: 0;
        }

        .text-box-cennik2 {
            margin-top: 3rem;
        }


      }


  