        /* --- STYLE PODSTAWOWE --- */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4; /* Tło zbliżone do ogólnego */
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* --- ROTATOR (SLIDER) STYLE --- */
        .slider-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px; /* Maksymalna szerokość jak kontener strony */
            margin: 0 auto 40px auto;
            overflow: hidden; /* Ukrywamy to, co wystaje */
            border-radius: 8px; /* Lekkie zaokrąglenia, wyglądają nowocześniej */
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Delikatny cień */
            background-color: #fff;
        }

        /* Główny kontener na slajdy */
        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out; /* Płynne przewijanie */
        }

        /* Pojedynczy slajd */
        .slide {
            min-width: 100%; /* Każdy slajd zajmuje 100% szerokości tracka */
            box-sizing: border-box;
            position: relative;
            display: flex;
            /* Domyślnie dla pełnej szerokości */
            align-items: flex-start;
            justify-content: center;
            min-height: 200px; /* Minimalna wysokość bannera */
            background-size: cover;
            background-position: center;
        }

        /* Zawartość tekstowa na slajdzie (overlay) */
        .slide-content {
            background: rgba(255, 255, 255, 0.9); /* Półprzezroczyste białe tło dla tekstu */
            padding: 30px;
            border-radius: 5px;
            max-width: 800px;
            text-align: justify;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 20px;
            z-index: 2;
        }

        /* Kolory dla CMBL (niebieski i zielony) */
        .slide-content h2 {
            margin-top: 0;
            color: #0056b3; /* Granatowy / Niebieski CMBL */
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .slide-content p {
            font-size: 1.1rem;
            line-height: 1.5;
            color: #555;
            margin-bottom: 20px;
        }

        .slide-content ul,
        .slide-content ol,
        .slide-content li {
            text-align: left;
        }

        /* Przycisk akcji w bannerze */
        .slide-btn {
            display: inline-block;
            background-color: #4CAF50; /* Zielony CMBL (lub zbliżony) */
            color: white;
            padding: 10px 25px;
            text-decoration: none;
            border-radius: 3px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .slide-btn:hover {
            background-color: #45a049;
        }

        /* UKŁADY OPARTE NA FLEXBOXIE (Dla nowych grafik) */
        
        /* 1. Grafika po lewej, tekst po prawej */
        .slide.layout-img-left {
            flex-direction: row;
            background: #fff; /* Czyste tło */
        }
        .slide.layout-img-left .slide-image {
            flex: 1;
            height: 100%;
            min-height: 350px;
            background-size: cover;
            background-position: center;
        }
        .slide.layout-img-left .slide-text-wrapper {
            flex: 1;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Usuwamy tło dla overlay, bo tło slajdu jest czyste */
        .slide.layout-img-left .slide-content {
            background: transparent;
            box-shadow: none;
            padding: 0;
            text-align: left;
        }

        /* 2. Grafika po prawej, tekst po lewej */
        .slide.layout-img-right {
            flex-direction: row-reverse;
            background: #fff;
        }
        .slide.layout-img-right .slide-image {
            flex: 1;
            height: 100%;
            min-height: 350px;
            background-size: cover;
            background-position: center;
        }
        .slide.layout-img-right .slide-text-wrapper {
            flex: 1;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slide.layout-img-right .slide-content {
            background: transparent;
            box-shadow: none;
            padding: 0;
            text-align: left;
        }

        /* 3. Pełna szerokość z przyciemnieniem */
        .slide.layout-full-width::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.4); /* Przyciemnienie zdjęcia dla czytelności tekstu */
            z-index: 1;
        }
        .slide.layout-full-width .slide-content {
            position: relative;
            z-index: 2;
            /* Jeśli chcesz tekst na ciemnym tle */
            background: transparent;
            color: white;
            box-shadow: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        .slide.layout-full-width .slide-content h2,
        .slide.layout-full-width .slide-content p {
            color: white;
        }

        /* --- NAWIGACJA (Strzałki i kropki) --- */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none; /* Aby nie blokować klikania na sam slajd */
            z-index: 10;
        }

        .nav-btn {
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #333;
            margin: 0 10px;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .nav-btn:hover {
            background: white;
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 15px;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .dot.active {
            background: #0056b3; /* Aktywna kropka w kolorze firmowym */
            background: #4CAF50; /* Albo zielonym */
        }

        /* Responsywność dla urządzeń mobilnych */
        @media (max-width: 768px) {
            .slide.layout-img-left,
            .slide.layout-img-right {
                flex-direction: column; /* Układamy jedno pod drugim na telefonach */
            }
            .slide.layout-img-left .slide-image,
            .slide.layout-img-right .slide-image {
                min-height: 200px;
                width: 100%;
            }
            .slide.layout-img-left .slide-text-wrapper,
            .slide.layout-img-right .slide-text-wrapper {
                padding: 20px;
                text-align: center;
            }
            .slide-content h2 {
                font-size: 1.5rem;
            }
            .nav-btn {
                width: 30px; height: 30px; font-size: 16px;
            }
        }