 .legal-document 
        {
            background-color: #ffffff;
            border-radius: 16px;       /* Zaokrąglone rogi */
            padding: 2.5rem 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            font-family: 'Merriweather', Georgia, serif;
            color: #000000;
            line-height: 1.8;
        }

        .legal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .legal-header h1 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #000000;
            font-family: 'Merriweather', Georgia, serif !important;
        }

        .legal-header h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 0;
            font-family: 'Merriweather', Georgia, serif !important;
        }

        .legal-section-title {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #000000;
            font-family: 'Merriweather', Georgia, serif !important;
        }

        .legal-section-title span {
            display: block;
        }

        .legal-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }

        .legal-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.75rem;
            text-align: justify;
        }

        .legal-list li .item-number {
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700;
        }

        @media (max-width: 576px) {
            .legal-document {
                padding: 1.5rem 1.25rem;
            }
        }