        :root {
            --yellow: #FFC107;
            --red: #D32F2F;
            --dark: #212121;
            --light: #FFFFFF;
            --gray: #f5f5f5;
            --blue: #00A1D9;
            --maxw: 1200px;
            --cta-height: 72px;
        }

        /* Reset i podstawowe style */
        * {
            box-sizing: border-box;
        }
        html, body {
            height: 100%;
        }
        body {
            margin: 0;
            font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            color: var(--dark);
            background: var(--light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: calc(var(--cta-height) + env(safe-area-inset-bottom));
        }
        .container {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0 20px;
        }

/* --- Podstawowe style globalne i resetowanie --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

    .map-container {
      width: 100%;
      height: 500px; /* wysokość mapy */
    }
    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
	
	    .godziny {
      margin-top: 12px;   /* odstęp od góry */
      font-size: 14px;    /* większa czcionka */
      font-weight: bold;  /* pogrubienie */
      text-align: center; /* wyśrodkowanie */
    }

/* --- Style nawigacji (Header) --- */
.nawigacja {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nawigacja-kontener {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    display: block;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #007bff;
}

/* --- Style sekcji powitalnej --- */
.sekcja-powitalna {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('fotografostroda-jacek.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sekcja-powitalna h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sekcja-powitalna p {
    font-size: 1.4em;
    margin-bottom: 30px;
}

/* Przycisk CTA (Call to Action) */
.przycisk-cta {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.przycisk-cta:hover {
    background-color: #e5a000;
}

/* Wskaźniki zaufania */
.wskazniki-zaufania {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.1em;
    font-weight: bold;
}

.wskazniki-zaufania span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
}

/* --- Responsywność --- */
@media (max-width: 768px) {
    .nawigacja-kontener {
        flex-direction: column;
        text-align: center;
    }
    .menu ul {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }
    .sekcja-powitalna {
        padding: 100px 20px;
    }
    .sekcja-powitalna h1 {
        font-size: 2.5em;
    }
    .sekcja-powitalna p {
        font-size: 1.2em;
    }
    .wskazniki-zaufania {
        flex-direction: column;
        gap: 15px;
    }
}

        /* Sekcja kontaktowa na górze */
        .top-contact {
            background: var(--gray);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
        .contact-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 18px 0;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 0;
        }
        .contact-icon {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.02));
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            flex-shrink: 0;
        }
        .contact-icon svg {
            width: 32px;
            height: 32px;
            display: block;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }
        .contact-info h4 {
            margin: 0 0 4px 0;
            font-size: 20px;
            line-height: 1.05;
            color: var(--dark);
            font-weight: 700;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .contact-info .meta {
            font-size: 12px;
            text-transform: uppercase;
            color: #666;
            letter-spacing: 0.6px;
            margin-bottom: 6px;
        }
        .contact-info a.contact-action {
            display: inline-block;
            font-size: 14px;
            color: var(--blue);
            text-decoration: none;
            font-weight: 600;
        }
        .contact-info a.contact-action:focus {
            outline: 3px solid rgba(0, 161, 217, 0.15);
            outline-offset: 3px;
        }

        /* Nagłówek i nawigacja */
        header {
            background: var(--red);
            color: var(--light);
            padding: 28px 0;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 30px;
            letter-spacing: 0.4px;
        }
        header p {
            margin: 6px 0 0;
            font-size: 15px;
            opacity: 0.95;
        }
        nav {
            display: flex;
            justify-content: center;
            background: var(--red);
            border-bottom: 4px solid var(--yellow);
            gap: 8px;
            padding: 0 20px;
        }
        nav a {
            color: var(--light);
            padding: 14px 20px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
        }
        nav a:focus,
        nav a:hover {
            background: var(--yellow);
            color: var(--dark);
        }

        /* Ogólne style dla sekcji z zawartością */
        .content-section {
            padding: 36px 0;
            text-align: center;
        }
        .content-section h2 {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--red);
            display: inline-block;
            border-bottom: 2px solid var(--yellow);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .content-section#o-nas {
            background-color: var(--light);
        }
        .content-section#foto-uslugi {
            background-color: var(--gray);
            padding: 40px 0;
        }
        .content-section#produktowe {
            background-color: #f0f4f8;
            padding: 60px 20px;
        }
        .content-section#odziez {
            padding: 60px 20px;
            background-color: #ffffff;
            border-top: 1px solid #e0e0e0;
        }
        .content-section#galeria {
            background-color: var(--gray);
        }
        .content-section#kontakt {
            background-color: var(--light);
        }

        /* Nagłówki z podkreśleniem */
        .content-section h2.underlined {
            color: #333;
            margin-bottom: 20px;
            position: relative;
        }
        .content-section h2.underlined::after {
            content: '';
            display: block;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            margin: 10px auto 0;
            border-radius: 2px;
        }
        
        /* Siatki */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .service-item {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            text-align: left;
        }
        .service-item h3 {
            margin-top: 0;
            color: var(--red);
        }

        .foto-grid-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            width: 100%;
            max-width: var(--maxw);
            margin: 0 auto;
        }
        .sidebar {
            flex-grow: 1;
            max-width: 200px;
            display: none;
        }
        .foto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 800px;
        }
        .foto-item {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }
        .foto-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        .foto-icon {
            font-size: 3.5em;
            margin-bottom: 15px;
            line-height: 1;
        }
        .foto-item h3 {
            font-size: 1.25em;
            font-weight: 600;
            color: #444;
            margin-bottom: 5px;
        }
        .foto-item p {
            font-size: 0.9em;
            color: #777;
            margin-top: 0;
            line-height: 1.4;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .gallery-item {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .gallery-item h3 {
            margin: 15px 15px 5px;
            font-size: 1.2em;
        }
        .gallery-item p {
            margin: 0 15px 15px;
            font-size: 0.9em;
            color: #777;
        }

        /* Opinie */
        .opinions {
            margin-top: 18px;
        }
        .opinion {
            background: #fff;
            padding: 18px;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            margin-bottom: 12px;
            text-align: left;
        }

        /* Formularz kontaktowy */
        .contact-form {
            max-width: 560px;
            margin: 20px auto;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #e6e6e6;
            border-radius: 8px;
            font-size: 15px;
            margin-bottom: 12px;
        }
        .contact-form button {
            background: var(--red);
            color: var(--light);
            border: none;
            padding: 14px 18px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
        }
        .contact-form button:focus {
            outline: 3px solid rgba(211, 47, 47, 0.15);
        }
        .contact-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        /* Floating Facebook Icon */
        .facebook-float {
            position: fixed;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1200;
        }
        .facebook-float a {
            display: block;
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: #1877F2;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.18);
            text-decoration: none;
        }

        /* Stały CTA na dole */
        .fixed-cta {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1300;
            background: linear-gradient(90deg, var(--red), #b71c1c);
            padding: 12px calc(20px + env(safe-area-inset-left)) calc(12px + env(safe-area-inset-bottom));
            box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
        }
        .fixed-cta .cta-inner {
            max-width: var(--maxw);
            margin: 0 auto;
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: center;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 16px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .cta-btn:focus {
            outline: 3px solid rgba(255, 193, 7, 0.18);
            outline-offset: 3px;
        }
        .cta-primary {
            background: var(--yellow);
            color: var(--dark);
        }
        .cta-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid rgba(255, 255, 255, 0.12);
        }

        /* Sekcja odzieżowa */
        .apparel-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .apparel-section .image-container {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        .apparel-section img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .apparel-section .text-container {
            flex: 2;
            min-width: 300px;
            text-align: left;
        }
        .apparel-section h2 {
            font-size: 2.2em;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        .apparel-section p {
            font-size: 1em;
            line-height: 1.6;
            color: #666;
            margin-bottom: 15px;
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .foto-grid-container {
                flex-direction: column;
                align-items: center;
            }
            .sidebar {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .contact-list {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 14px;
            }
            .contact-item {
                justify-content: flex-start;
            }
            .contact-icon {
                width: 56px;
                height: 56px;
                min-width: 56px;
            }
            .fixed-cta .cta-inner {
                flex-direction: column;
                gap: 10px;
                padding-bottom: env(safe-area-inset-bottom);
            }
            .cta-btn {
                width: 100%;
                justify-content: center;
                padding: 16px 18px;
                font-size: 18px;
            }
            .apparel-section {
                flex-direction: column;
                text-align: center;
            }
            .apparel-section .text-container {
                text-align: center;
            }
            .content-section h2 {
                font-size: 2em;
            }
        }
        @media (min-width: 992px) {
            .contact-info h4 {
                font-size: 24px;
            }
            .contact-icon {
                width: 72px;
                height: 72px;
                min-width: 72px;
            }
            .cta-primary {
                padding: 16px 24px;
                font-size: 18px;
            }
        }
		
		/* Główne style dla nowej sekcji */
.services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* Siatka Flexbox dla responsywności i układu */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Styl pojedynczego kafla usługi */
.service-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-box--wide {
    max-width: 700px;
    flex-grow: 1;
}

/* Nagłówki i zawartość wewnątrz kafla */
.service-box-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.service-box-header img {
    max-width: 64px;
    height: auto;
}

.service-box-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-box-content h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #444;
    text-align: center;
    margin-bottom: 15px;
}

.service-box-content ul {
    list-style-type: '✓ ';
    padding-left: 20px;
    margin: 0 0 20px;
}

.service-box-content li {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

/* Styl przycisku "Zobacz szczegóły" */
.service-btn {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 12px 25px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto; /* Przycisk zawsze na dole */
    align-self: center;
}

.service-btn:hover {
    background-color: #e5a000;
    color: #fff;
}

/* Responsywność */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .service-box--wide {
        max-width: 100%;
    }

    .service-box-content h3 {
        font-size: 1.3em;
    }
}

/* Sekcja Pływająca */
.floating-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}

.floating-content {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transform: translateY(0);
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-content .text-container {
    z-index: 10;
    position: relative;
}

.flashing-text {
    font-size: 2.8em;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
    animation: flashing 1.5s infinite;
}

@keyframes flashing {
    0%, 100% { color: #d32f2f; }
    50% { color: #ffc107; }
}

.floating-content p {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto 20px;
}

.description {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.btn-primary {
    display: inline-block;
    background-color: #d32f2f;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b71c1c;
}

/* Efekt Pulsującego Koła w Tle */
.pulsing-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Style dla sekcji Ksero */
.ksero-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.ksero-section.reverse {
    background-color: #eef1f4;
}

.ksero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ksero-section.reverse .ksero-layout {
    flex-direction: row-reverse;
}

.ksero-image {
    flex: 1;
    min-width: 300px;
}

.ksero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ksero-content {
    flex: 1;
}

.ksero-content h2 {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
}

.ksero-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

.services-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.services-list li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
}

.services-list i {
    color: #007bff;
    margin-right: 10px;
}

/* Responsywność dla sekcji Ksero */
@media (max-width: 768px) {
    .ksero-layout {
        flex-direction: column;
        text-align: center;
    }

    .ksero-section.reverse .ksero-layout {
        flex-direction: column;
    }

    .ksero-content {
        margin-top: 20px;
    }
}

/* --- Ogólne style dla stopki --- */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Pozwala na zawijanie kolumn na mniejszych ekranach */
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1; /* Równa szerokość kolumn */
    min-width: 250px; /* Minimalna szerokość, by zapobiec zbytniemu ściskaniu */
}

.footer-column h3 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

/* --- Kolumna z informacjami --- */
.info-column p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-column a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.info-column a:hover {
    color: #2980b9;
}

/* --- Kolumna z odnośnikami --- */
.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column li {
    margin-bottom: 10px;
}

.links-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.links-column a:hover {
    color: #3498db;
    text-decoration: underline;
}

/* --- Kolumna z mapą --- */
.map-container {
    border-radius: 8px;
    overflow: hidden; /* Zapobiega wylewaniu się mapy poza kontener */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
}

/* --- Dolna sekcja (copyright) --- */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: #bdc3c7;
}

/* --- Responsywność --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Główne style sekcji */
.documents-photos-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

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

/* Układ kolumn - zdjęcie po lewej, tekst po prawej */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-column img:hover {
    transform: scale(1.03);
}

.text-column {
    flex: 1;
    min-width: 300px;
}

.title {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    font-weight: 600;
    color: #888;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Przycisk CTA (Call to Action) */
.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Sekcja z gwarancjami na dole */
.guarantee-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px;
}

.arrow-icon {
    font-size: 2em;
    color: #3498db;
    font-weight: bold;
}

.guarantee-text {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #444;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 800px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 25px;
    }

    .guarantee-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .guarantee-item {
        margin: 10px 0;
    }
}
/* Nowa sekcja na samym dole */
.documents-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 1.3em;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
}

.documents-note .thumbs-up {
    font-size: 1.5em;
    color: #3498db;
}

.map-container {
    /* Upewnia się, że mapa jest responsywna i nie wykracza poza kontener */
    position: relative;
    width: 100%;
    height: 400px; /* Dostosuj wysokość według potrzeb */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    /* Rozciąga mapę na cały kontener */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Zablokowanie interakcji z mapą, aby nie przeszkadzała w przewijaniu strony */
    pointer-events: none;
}

.text-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.text-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.text-section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.text-section-subtitle {
    font-size: 1.2em;
    color: #888;
    margin-bottom: 40px;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    line-height: 1.8;
    color: #555;
}

.text-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .text-section-title {
        font-size: 2em;
    }

    .text-section-subtitle {
        font-size: 1em;
    }
}

.services-section-v2 {
    background: linear-gradient(135deg, #1f2833, #0b0c10);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-title-v2 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #66fcf1;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: #1f2833;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 35px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    border: 1px solid rgba(102, 252, 241, 0.2);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(102, 252, 241, 0.1);
}

.card-header-v2 img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 5px #66fcf1);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .card-header-v2 img {
    transform: scale(1.1);
}

.card-content-v2 h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #45a29e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-list-v2 li {
    font-size: 1em;
    font-weight: 500;
    color: #c5c6c7;
    flex-basis: 48%; /* Creates two-column layout */
    margin-bottom: 12px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.service-list-v2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #45a29e;
    font-weight: bold;
}

.service-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #45a29e, #66fcf1);
    color: #0b0c10;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(102, 252, 241, 0.2);
}

.service-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 252, 241, 0.4);
    background: linear-gradient(45deg, #66fcf1, #45a29e);
}

.services-section-v3 {
    background: linear-gradient(135deg, #2c0b0b, #0e0404);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-title-v3 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card-v3 {
    background: #1a0808;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 35px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    border: 1px solid rgba(206, 43, 43, 0.2);
}

.service-card-v3:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(206, 43, 43, 0.1);
}

.card-header-v3 img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 5px #ce2b2b);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card-v3:hover .card-header-v3 img {
    transform: scale(1.1);
}

.card-content-v3 h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-list-v3 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-list-v3 li {
    font-size: 1.3em; /* Większy rozmiar czcionki */
    font-weight: bold; /* Pogrubiona czcionka */
    color: #ffc107; /* Kolor z palety */
    flex-basis: 48%;
    margin-bottom: 25px; /* Duży odstęp między elementami */
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.service-list-v3 li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ce2b2b;
    font-weight: bold;
    font-size: 1.2em;
}

.service-button-v3 {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ce2b2b, #ffc107);
    color: #0e0404;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.service-button-v3:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(45deg, #ffc107, #ce2b2b);
}

.services-section-v4 {
    background: linear-gradient(135deg, #2c0b0b, #0e0404);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-title-v4 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-grid-v4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card-v4 {
    background: #1a0808;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 35px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    border: 1px solid rgba(206, 43, 43, 0.2);
}

.service-card-v4:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(206, 43, 43, 0.1);
}

.card-header-v4 img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 5px #ce2b2b);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card-v4:hover .card-header-v4 img {
    transform: scale(1.1);
}

.card-content-v4 h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nowy, jednokolumnowy styl listy dla lepszej czytelności */
.service-list-v4-single-column {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.service-list-v4-single-column li {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.service-list-v4-single-column li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ce2b2b;
    font-weight: bold;
    font-size: 1.2em;
}

/* Styl dla pozostałych list */
.service-list-v4 {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-list-v4 li {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffc107;
    flex-basis: 48%;
    margin-bottom: 25px;
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.service-list-v4 li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ce2b2b;
    font-weight: bold;
    font-size: 1.2em;
}

.service-button-v4 {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ce2b2b, #ffc107);
    color: #0e0404;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.service-button-v4:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(45deg, #ffc107, #ce2b2b);
}

.services-section-v5 {
    background: linear-gradient(135deg, #2c0b0b, #0e0404);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-title-v5 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-grid-v5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card-v5 {
    background: #1a0808;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 35px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    border: 1px solid rgba(206, 43, 43, 0.2);
}

.service-card-v5:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(206, 43, 43, 0.1);
}

.card-header-v5 img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 0 5px #ce2b2b);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card-v5:hover .card-header-v5 img {
    transform: scale(1.1);
}

.card-content-v5 h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Jednokolumnowy styl listy dla wszystkich kategorii */
.service-list-v5-single-column {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left; /* Wyrównanie do lewej */
}

.service-list-v5-single-column li {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 25px; /* Duży odstęp między elementami */
    position: relative;
    padding-left: 35px; /* Zwiększony padding, aby pomieścić ikonkę */
    line-height: 1.4; /* Poprawia odstępy między wierszami tekstu */
}

.service-list-v5-single-column li::before {
    content: '.'; /* Ikonka aparatu fotograficznego */
    position: absolute;
    left: 0;
    color: #ce2b2b; /* Kolor ikonki (tutaj #ce2b2b nie zadziała, bo to emoji) */
    font-weight: bold;
    font-size: 1.2em; /* Rozmiar ikonki */
    top: -3px; /* Drobna korekta pozycji pionowej */
}

.service-button-v5 {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #ce2b2b, #ffc107);
    color: #0e0404;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.service-button-v5:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(45deg, #ffc107, #ce2b2b);
}

/* Ogólny styl sekcji */
.order-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  font-family: Arial, sans-serif;
}

/* Tekst */
.order-text {
  flex: 1;
}

.order-text .subtitle {
  color: #c0392b;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.order-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.order-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.order-text li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.order-text li::before {
  content: "✔";
  color: #e74c3c;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Guziki */
.btn {
  display: inline-block;
  margin: 0.8rem 0;
  padding: 0.7rem 1.2rem;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #c0392b;
}

.btn.big {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Obrazek */
.order-image {
  flex: 1;
  text-align: center;
}

.order-image img {
  max-width: 100%;
  border-radius: 10px;
}
