 /* Styl pozostał bez zmian */
        body {
            font-family: Georgia, serif;
            margin: 0;
            padding: 0;
            background: url('http://www.alefotobudka.pl/img/bg_pic.jpg') center/cover fixed no-repeat;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background-color: #69bfac;
            color: #fff;
            padding: 10px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #menu-icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            cursor: pointer;
        }

        nav {
            background-color: #cfccbf;
            text-align: left;
            position: fixed;
            top: -100%;
            left: 0;
            width: 100vw;
            height: auto;
            overflow: hidden;
            transition: top 0.5s ease-out;
        }

        nav.show {
            top: 50px;
        }

        nav a {
            color: #494445;
            text-decoration: none;
            display: block;
            padding: 10px;
            width: 100%;
            border-bottom: 1px solid #494445;
            transition: background-color 0.3s ease-out;
        }

        nav a:hover {
            background-color: #555;
        }

        main {
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            margin: 20px 20px 70px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            line-height: 19px;
            color: #494445;
            text-align: left; /* Nowy styl - tekst wyśrodkowany */
        }

        main h2, main h3 {
            margin: 10px 0 30px 0;
            font-family: 'Oranienbaum', serif;
            font-weight: 400;
            line-height: 19px;
            color: #69bfac;
            text-rendering: optimizelegibility;
        }
        
        main h4 {
            margin: 10px 0 0px 0;
            font-family: 'Oranienbaum', serif;
            font-weight: 400;
            line-height: 19px;
            color: #69bfac;
            text-rendering: optimizelegibility;
        }

        main a {
            color: #69bfac;
            text-decoration: underline;
        }

        form {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        label {
            margin-bottom: 10px;
        }

        input {
            padding: 8px;
            margin-bottom: 15px;
            width: 100%;
            box-sizing: border-box;
        }

        button {
            padding: 10px;
            background-color: #69bfac;
            color: #fff;
            border: none;
            cursor: pointer;
        }

        footer {
            background-color: #69bfac;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
            z-index: 1; /* Zmień z-index na 1, aby było pod modal */
        }

        #menu-toggle {
            cursor: pointer;
        }

        #logo {
            max-width: 60%;
            height: auto;
            margin-top: 60px;
            margin-bottom: 10px;
            align-self: center;
        }

        img.gallery-image {
            width: calc(100% - 10px);
            margin-bottom: 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        img.modal-content {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 3; /* Zmień z-index na 3, aby było nad innymi elementami */
        }

        .modal.show {
            display: flex;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            color: #fff;
            font-size: 24px;
        }

        .social-widgets {
            position: fixed;
            top: 150px;
            margin: 0px;
            padding: 0px;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 3; /* Zmień z-index na 3, aby było nad innymi elementami */
        }

        .social-widget {
            margin: 0px;
            padding: 0px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            cursor: pointer;
        }
        
        iframe {
            width: 100%; /* Ustawienie szerokości na 100% */
        }

        @media only screen and (max-width: 600px) {
            nav a {
                display: none;
            }

            nav.show a {
                display: block;
            }

            main {
                padding: 10px;
            }
        }