 /* Stylizacja tła i slajdu */
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
        }

        .slide-container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
            color: #fff;
            background-color: #333; /* Domyślne ciemne tło */
            background-size: cover;
            background-position: center;
            padding: 20px;
        }

        /* Stylizacja tekstu */
        .slide-text {
            max-width: 800px;
        }

        h1 {
            font-size: 3em;
            margin: 0.5em 0;
        }

        p {
            font-size: 1.2em;
            line-height: 1.6em;
        }

        /* Stylizacja grafiki */
        .slide-image {
            max-width: 300px;
            margin: 20px auto;
        }

        /* Stylizacja przycisków */
        .nav-buttons {
            position: absolute;
            bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .nav-button {
            padding: 10px 20px;
            font-size: 1.2em;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .nav-button:hover {
            background-color: rgba(255, 255, 255, 0.6);
            color: #333;
        }