    .logo img.desktop-logo {
        display: block;
        height: 50px; /* dostosuj wysokość */
    }
    .logo span.mobile-logo {
        display: none;
    }
    
    .shop-btn {
        background-color: #4CAF50;
        color: white;
        padding: 8px 12px;
        border-radius: 4px;
        margin-left: 10px;
        text-decoration: none;
        animation: blink 1.5s infinite;
    }
    
    @keyframes blink {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
    }
    
    @media (max-width: 768px) {
        .logo img.desktop-logo {
            display: none;
        }
        .logo span.mobile-logo {
            display: block;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .shop-btn {
            display: none; /* na mobile możesz ukryć przycisk sklepu */
            /* lub zmniejszyć go dla lepszej czytelności */
            /* padding: 5px 8px;
            font-size: 0.8rem; */
        }
    }
    /* Linie boczne z cieniem */
    #podkladki-pod-mysz {
        position: relative;
        overflow: hidden; /* Zapobiega "wyciekaniu" cienia */
    }
    
    #podkladki-pod-mysz::before, 
    #podkladki-pod-mysz::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1px;
        z-index: 1;
    }
    
    /* Lewa linia z cieniem */
    #podkladki-pod-mysz::before {
        left: 50px;
        background: #e0e0e0;
        box-shadow: 
            -2px 0 3px rgba(0,0,0,0.1), /* Cień z lewej strony linii */
            -4px 0 5px rgba(0,0,0,0.05);
    }
    
    /* Prawa linia z cieniem */
    #podkladki-pod-mysz::after {
        right: 50px;
        background: #e0e0e0;
        box-shadow: 
            2px 0 3px rgba(0,0,0,0.1), /* Cień z prawej strony linii */
            4px 0 5px rgba(0,0,0,0.05);
    }
    
    /* Wersja kolorystyczna pasująca do motywu strony */
    #podkladki-pod-mysz.kolorowe-linie::before,
    #podkladki-pod-mysz.kolorowe-linie::after {
        background: #2E7D32; /* Kolor pasujący do motywu */
        box-shadow: 
            0 0 8px rgba(46, 125, 50, 0.3); /* Subtelny kolorowy glow */
    }
    
    /* Dla lepszego efektu - padding po bokach */
    #podkladki-pod-mysz .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    @media (max-width: 768px) {
        #podkladki-pod-mysz::before, 
        #podkladki-pod-mysz::after {
            display: none;
        }
        #podkladki-pod-mysz .container {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
	
	 nav li {
        position: relative;
        padding: 5px 0;
    }

    nav li:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #2E7D32; /* Kolor obramowania */
        animation: borderGrow 0.3s ease-out;
    }

    @keyframes borderGrow {
        from {
            transform: scaleX(0);
        }
        to {
            transform: scaleX(1);
        }
    }

    /* Dla aktywnej pozycji menu */
    nav li.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #2E7D32;
    }
	
	/* Nowe style dla menu */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.logo span {
    color: #000;
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav li {
    margin-left: 0;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #2E7D32;
}




/* Style dla wersji mobilnej */
@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    nav a::after {
        display: none;
    }
}

.header-container {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}
	
.specyfikacja-tabela {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.specyfikacja-tabela caption {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.specyfikacja-tabela td {
  padding: 10px 15px;
  vertical-align: top;
  border: 1px solid #e0e0e0;
}

.spec-label {
  font-weight: bold;
  width: 25%;
  background-color: #f5f5f5;
}

.spec-value {
  width: 25%;
}

/* Dla responsywności na małych ekranach */
@media (max-width: 768px) {
  .specyfikacja-tabela {
    display: block;
  }
  .specyfikacja-tabela tr {
    display: block;
    margin-bottom: 15px;
  }
  .specyfikacja-tabela td {
    display: block;
    width: 100% !important;
    border: none;
    padding: 5px 10px;
  }
  .spec-label {
    background-color: transparent;
    font-weight: bold;
    padding-top: 15px;
    border-bottom: 1px solid #eee;
  }
}
	
	.two-column-layout2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
}

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

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

/* Responsywność */
@media (max-width: 768px) {
    .column-left,
    .column-right {
        flex: 1 1 100%;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
}

/* Dodatkowe style dla lepszego wyglądu */
.why-list {
    margin: 15px 0 0 20px;
}

.price-table {
    margin-top: 15px;
}
	
#obrazekglowny {
    max-width: 100%;  /* Responsywność */
    height: auto;     /* Zachowaj proporcje */
    display: block;   /* Umożliwia użycie margin: auto */
    margin: 0 auto 30px;   /* Wyśrodkowanie poziome */
}

/* Styl dla większych ekranów (np. monitorów) */
@media (min-width: 768px) {
    #obrazekglowny {
        max-width: 80%; /* Możesz zmniejszyć szerokość na większych ekranach */
    }
}

/* Styl dla mniejszych ekranów (np. telefonów) */
@media (max-width: 767px) {
    #obrazekglowny {
        width: 100%; /* Pełna szerokość na małych ekranach */
    }
}

    .order-instructions-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin: 40px 0;
    }
    
    .order-instructions-left {
        flex: 1 1 50%;
        min-width: 300px;
    }
    
    .order-instructions-right {
        flex: 1 1 40%;
        min-width: 300px;
    }
    
    @media (max-width: 768px) {
        .order-instructions-left,
        .order-instructions-right {
            flex: 1 1 100%;
        }
    }
	
	 .accordion {max-width: 800px; margin: 0 auto; font-family: Arial, sans-serif;}
        .accordion-item {margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px;}
        .accordion-header {
            padding: 15px;
            background-color: #f5f5f5;
            cursor: pointer;
            font-weight: bold;
            position: relative;
            color: #000;
        }
        .accordion-header:after {
            content: '+';
            position: absolute;
            right: 15px;
            font-size: 20px;
        }
        .accordion-header.active:after {content: '-';}
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .accordion-content-inner {padding: 15px;}
	
	.kubki-section {
  background: #ffffff;
  padding: 60px 20px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.kubki-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
}

.lead {
  text-align: center;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

.kubki-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.kubki-left {
  flex: 1 1 50%;
}

.kubki-right {
  flex: 1 1 40%;
  text-align: center;
}

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

.why-list {
  margin: 0 0 20px 20px;
  list-style-type: disc;
}

.btn-seo {
  display: inline-block;
  margin-top: 20px;
  background: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-seo:hover {
  background: #1B5E20; /* Ciemniejszy odcień zielonego */
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 1rem;
}

.price-table th, .price-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.price-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.spec-section {
  margin-top: 30px;
}

.spec-list {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.spec-list h1 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.spec-list h2 {
  color: #444;
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
}

.spec-list ul {
  padding-left: 20px;
  margin: 15px 0;
}

.spec-list li {
  margin-bottom: 8px;
}

.spec-list strong {
  color: #333;
}

.gallery-section {
  margin-top: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.size-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}

.size-table th, .size-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
}

.size-table th {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .kubki-flex {
    flex-direction: column;
  }

  .kubki-left, .kubki-right {
    flex: 1 1 100%;
  }

  .kubki-title {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}

	 .nasze-uslugi {
            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .nasze-uslugi h2 {
            color: #333;
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
        }
        
        .uslugi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
			line-height: 1.6;
            margin-bottom: 1em;
        }
        
        .usłu {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .usłu:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .usłu a {
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
            text-decoration: none;
            font-weight: bold;
            display: block;
            height: 100%;
        }
        
        .usłu a:hover {
            color: #1B5E20; /* Ciemniejszy odcień zielonego */
            text-decoration: underline;
        }
        
        .lokalizacja {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
            font-style: italic;
        }
		
        /* Reset i podstawowe style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #ffffff; /* Białe tło */
            color: #333; /* Czarny tekst */
            line-height: 1.6;
            padding-bottom: 60px; /* Zapobiega zasłanianiu treści przez pasek kontaktowy */
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header i nawigacja */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
        }
        
        .logo span {
            color: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 25px;
        }
        
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        /* Hero section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1520333789090-1afc82db536a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
            color: #fff;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #1B5E20; /* Ciemniejszy odcień zielonego */
        }
        
        /* Sekcja usług */
        .services {
            padding: 50px 0;
            background-color: #fff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            background-color: #f1f1f1;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-content h3 {
            margin-bottom: 10px;
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
        }
        
        /* Galeria */
        .gallery {
            padding: 50px 0;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 250px;
            background-color: #f1f1f1;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        /* O nas */
        .about {
            padding: 50px 0;
            background-color: #fff;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #f1f1f1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Kontakt */
        .contact {
            padding: 50px 0;
            background-color: #f1f5f9;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .contact-card {
            flex: 1;
            min-width: 250px;
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-card h3 {
            color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
            margin-bottom: 15px;
        }
        
        /* Stopka */
        footer {
            background-color: #222;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            color: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #444;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #2E7D32; /* Ciemnozielony zamiast pomarańczowego */
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Pasek kontaktowy na dole (tylko mobile) */
    .mobile-contact-bar {
	 display: none; /* Domyślnie ukryty */
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
        color: #fff;
        padding: 12px 0;
        z-index: 1000;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
    
    .mobile-contact-bar .contact-info {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mobile-contact-bar .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 0 10px;
        transition: transform 0.3s ease;
    }
    
    .mobile-contact-bar .contact-item:hover {
        transform: translateY(-3px);
    }
    
    .mobile-contact-bar .contact-icon {
        background: rgba(255, 255, 255, 0.2);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    
    .mobile-contact-bar a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        display: block;
    }
    
    /* Animacja pulsowania dla ikony telefonu */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .mobile-contact-bar .contact-item:first-child .contact-icon {
        animation: pulse 2s infinite;
    }
    
    /* Efekt podświetlenia po najechaniu */
    .mobile-contact-bar a:hover {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
        
        /* Responsywność */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #fff;
                flex-direction: column;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav li {
                margin: 0;
            }
            
            nav a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #f1f1f1;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .gallery-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .mobile-contact-bar {
                display: block;
            }
        }
		.accordion {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
  color: #000;
}

.accordion-btn:hover {
  background: #e0e0e0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.accordion-content ul {
  padding: 10px 20px;
  margin: 0;
  list-style: none;
}

.accordion-content li {
  padding: 8px 0;
}

.accordion-content a {
  text-decoration: none;
  color: #333;
}

.accordion-content a:hover {
  color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
}

/* Dodatkowy styl dla otwartego akordeonu */
.accordion-item.active .accordion-content {
  max-height: 500px; /* Dopasuj w razie potrzeby */
}

.accordion-item.active .accordion-btn {
  background: #e0e0e0;
}

/* Style dla sekcji z różnymi rodzajami kubków */
.kubki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.kubek-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  width: 100%; /* lub konkretna szerokość */
}

.kubek-item img {
  max-width: 100%; /* Obrazek nie przekroczy szerokości kontenera */
  height: auto; /* Zachowuje proporcje */
  border-radius: 4px; /* Opcjonalne zaokrąglenie rogów obrazka */
}
.kubek-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kubek-item a {
  color: #2E7D32; /* Ciemnozielony zamiast niebieskiego */
  text-decoration: none;
  font-weight: bold;
  display: block;
}

 .top-contact-bar {
            display: none;
        }
        
        /* Pokazujemy tylko na dużych ekranach */
        @media (min-width: 769px) {
            .top-contact-bar {
                display: block;
                background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
                color: white;
                padding: 8px 0;
                position: sticky;
                top: 0;
                z-index: 1000;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            }
            
            .top-contact-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
            
            .contact-info-top {
                display: flex;
                gap: 30px;
                align-items: center;
            }
            
            .contact-item-top {
                display: flex;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
            }
            
            .contact-item-top:hover {
                transform: translateY(-2px);
            }
            
            .contact-icon-top {
                font-size: 16px;
                color: white;
            }
            
            /* Animacja pulsującej ikony telefonu */
            .phone-icon {
                display: inline-block;
                animation: phonePulse 1.5s infinite ease-in-out;
            }
            
            @keyframes phonePulse {
                0% { transform: scale(1); }
                50% { transform: scale(1.2); }
                100% { transform: scale(1); }
            }
            
            .quote-btn {
                background: #d32f2f;
                color: white;
                padding: 10px 25px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: bold;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
                position: relative;
                overflow: hidden;
                animation: btnPulse 2s infinite;
            }
            
            .quote-btn:hover {
                background: #b71c1c;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
                animation: none;
            }
            
            @keyframes btnPulse {
                0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
                70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
                100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
            }
            
            .quote-btn::after {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: rgba(255, 255, 255, 0.1);
                transform: rotate(45deg);
                animation: shine 3s infinite;
            }
            
            @keyframes shine {
                0% { left: -100%; }
                20% { left: 100%; }
                100% { left: 100%; }
            }
			
/* Podstawowe style */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 4px;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  display: block;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

/* Style dla desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
  }
}

/* Style dla mobile */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    animation: none;
  }
  
  .dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dropdown-btn .fa-chevron-down {
    transition: transform 0.3s;
  }
  
  .dropdown.active .dropdown-btn .fa-chevron-down {
    transform: rotate(180deg);
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
			
			.quote-btn2 {
                background: #03b04f;
                color: white;
                padding: 10px 25px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: bold;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
                position: relative;
                overflow: hidden;
                animation: btnPulse 2s infinite;
            }
            
            .quote-btn2:hover {
                background: #b71c1c;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
                animation: none;
            }
            
            @keyframes btnPulse {
                0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
                70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
                100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
            }
            
            .quote-btn2::after {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: rgba(255, 255, 255, 0.1);
                transform: rotate(45deg);
                animation: shine 3s infinite;
            }
            
            @keyframes shine {
                0% { left: -100%; }
                20% { left: 100%; }
                100% { left: 100%; }
            }
			
			
			
        }
        
        /* Dostosowanie headeru aby nie był zasłaniany */
        @media (min-width: 769px) {
            header {
                top: 50px;
            }
        }
		
		/* Sekcja Nasze Usługi */
.sekcja-uslugi {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
}

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

.tytul-glowny {
    text-align: center;
    font-size: 2.4rem;
    color: #2E7D32;
    margin-bottom: 15px;
}

.podtytul {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.kolumny-uslugi {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.kolumna-lewa {
    flex: 1;
    min-width: 300px;
}

.kolumna-prawa {
    flex: 1;
    min-width: 300px;
}

.kategoria-uslugi {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.naglowek-kategorii {
    color: #2E7D32;
    margin-top: 0;
    border-bottom: 2px solid #2E7D32;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.lista-uslugi {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.element-uslugi {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.element-uslugi:hover {
    animation: miganie 0.5s infinite alternate;
    cursor: pointer;
}

.ikona-uslugi {
    width: 34px;
    margin-right: 10px;
}

.na-zapytanie {
    color: #2E7D32;
    font-weight: 500;
}

.przycisk-zapytaj {
    display: inline-block;
    background: #2E7D32;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 50px;
    text-align: center;
    font-size: 1.1rem;
}

.przycisk-zapytaj:hover {
    background: #1B5E20;
}

@keyframes miganie {
    from {
        background-color: rgba(255, 0, 0, 0.1);
    }
    to {
        background-color: rgba(255, 0, 0, 0.3);
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .kolumny-uslugi {
        flex-direction: column;
    }
    
    .tytul-glowny {
        font-size: 2rem;
    }
    
    .podtytul {
        font-size: 1rem;
    }
}

/* Sekcja Blog - Stylizacja */
.sekcja-blog {
    background-color: #f8f9fa;
    padding: 4rem 0;
    font-family: 'Open Sans', sans-serif;
}

.kontener-blog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.naglowek-blog {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.naglowek-blog::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #2E7D32;
    margin: 1rem auto 0;
}

.podtytul-blog {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.grid-artykulow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.karta-artykulu {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.karta-artykulu:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.obraz-artykulu {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.zawartosc-artykulu {
    padding: 1.5rem;
}

.kategoria-artykulu {
    display: inline-block;
    background: #e8f5e9;
    color: #2E7D32;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.karta-artykulu h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.skrot-artykulu {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.przycisk-czytaj {
    display: inline-block;
    color: #2E7D32;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding-right: 1.2rem;
}

.przycisk-czytaj::after {
    content: "→";
    position: absolute;
    right: 0;
    transition: right 0.3s ease;
}

.przycisk-czytaj:hover::after {
    right: -5px;
}

.przycisk-zobacz-wiecej {
    text-align: center;
    margin-top: 2rem;
}

.przycisk-cta-blog {
    display: inline-block;
    background: #2E7D32;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.przycisk-cta-blog:hover {
    background: white;
    color: #2E7D32;
    border-color: #2E7D32;
    transform: scale(1.05);
}

/* Responsywność */
@media (max-width: 768px) {
    .naglowek-blog {
        font-size: 1.8rem;
    }
    
    .podtytul-blog {
        font-size: 1rem;
    }
    
    .grid-artykulow {
        grid-template-columns: 1fr;
    }
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.karta-artykulu {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.karta-artykulu:nth-child(1) { animation-delay: 0.1s; }
.karta-artykulu:nth-child(2) { animation-delay: 0.2s; }
.karta-artykulu:nth-child(3) { animation-delay: 0.3s; }
.karta-artykulu:nth-child(4) { animation-delay: 0.4s; }
.karta-artykulu:nth-child(5) { animation-delay: 0.5s; }
.karta-artykulu:nth-child(6) { animation-delay: 0.6s; }
.karta-artykulu:nth-child(7) { animation-delay: 0.7s; }
.karta-artykulu:nth-child(8) { animation-delay: 0.8s; }


.sekcja-opinie {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.google-opinie {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.przycisk-opinia {
    display: inline-block;
    background: #4285F4;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.przycisk-opinia:hover {
    background: #3367D6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

/* Sekcja powitalna - Stylizacja */
.sekcja-powitalna {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                url('img/reklama-foto-warszawa1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sekcja-powitalna .kontener {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.sekcja-powitalna h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.sekcja-powitalna p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    animation: fadeIn 1.5s ease-out;
}

.przycisk-cta {
    display: inline-block;
    background-color: #2E7D32;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    border: 2px solid transparent;
    animation: pulse 2s infinite;
}

.przycisk-cta:hover {
    background-color: #1B5E20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 125, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.wskazniki-zaufania {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.wskazniki-zaufania span {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.wskazniki-zaufania span:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.wskazniki-zaufania span::before {
    content: "✓";
    color: #2E7D32;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Responsywność */
@media (max-width: 992px) {
    .sekcja-powitalna {
        padding: 6rem 0;
    }
    
    .sekcja-powitalna h1 {
        font-size: 2.8rem;
    }
    
    .sekcja-powitalna p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .sekcja-powitalna {
        padding: 4rem 0;
    }
    
    .sekcja-powitalna h1 {
        font-size: 2.2rem;
    }
    
    .sekcja-powitalna p {
        font-size: 1.1rem;
    }
    
    .wskazniki-zaufania {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .wskazniki-zaufania span {
        width: max-content;
    }
}

@media (max-width: 480px) {
    .sekcja-powitalna h1 {
        font-size: 1.8rem;
    }
    
    .przycisk-cta {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

.prosta-galerie {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.prosta-galerie h2 {
    color: #2E7D32;
    margin-bottom: 2rem;
}

.galeria-kontener {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.galeria-kontener img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeria-kontener img:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .galeria-kontener {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .galeria-kontener img {
        height: 150px;
    }
}

/* Sekcja Wyceny */
.sekcja-wycena {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.11), rgba(0, 0, 0, 0.16)), 
                url('img/reklama-foto-warszawa.png') center/cover no-repeat;
    padding: 3rem 1rem;
    color: green;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Kontener dla lepszego kontrastu tekstu */
.kontener-wycena {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Efekt przebłysku */
.przeblysk {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: translateX(-100%) skewX(-30deg);
    animation: przeblysk 8s infinite;
    z-index: 1;
}

@keyframes przeblysk {
    0% { transform: translateX(-100%) skewX(-30deg); }
    10% { transform: translateX(100%) skewX(-30deg); }
    100% { transform: translateX(100%) skewX(-30deg); }
}

.tekst-wycena h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.tekst-wycena p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Czerwony migający przycisk */
.przycisk-wycena {
    display: inline-block;
    background-color: #e53935;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(229, 57, 53, 0.7);
    border: none;
    cursor: pointer;
    animation: pulse-czerwony 1.5s infinite;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.przycisk-wycena:hover {
    background-color: #c62828;
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.9);
}

@keyframes pulse-czerwony {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* Responsywność */
@media (max-width: 768px) {
    .tekst-wycena h2 {
        font-size: 1.8rem;
    }
    
    .tekst-wycena p {
        font-size: 1rem;
    }
    
    .przycisk-wycena {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.menu-toggle .fas.fa-bars {
  display: none; /* Ukrywa ikonę */
}

.menu-toggle::after {
  content: "MENU"; /* Dodaje napis */
  font-weight: bold;
  font-family: Arial, sans-serif;
}
.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.privacy-policy h1 {
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.privacy-policy h2 {
  color: #444;
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-policy p {
  margin-bottom: 15px;
}

/* Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kontakt */
.contact-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.lead-text {
    color: var(--muted-text);
    line-height: 1.6;
}

/* Wyróżniony box */
.highlight-box {
    background: #fff8f8;
    border: 2px solid var(--accent-color);
    border-left: 6px solid var(--accent-color);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.icon-large {
    font-size: 28px;
    color: var(--accent-color);
    margin-right: 15px;
}

.highlight-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.highlight-email {
    font-size: 22px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 5px;
}

.highlight-note {
    font-size: 14px;
    color: var(--muted-text);
}

.highlight-note i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Kafelki z benefitami */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

/* Przycisk telefoniczny */
.phone-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.phone-label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

.phone-number {
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.phone-hours {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
}

/* Stopka kontaktowa */
.contact-footer {
    text-align: center;
    font-size: 14px;
    color: var(--muted-text);
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.security-info {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.security-info i {
    margin-right: 5px;
}

.separator {
    margin: 0 10px;
}

/* Prawa kolumna */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-tile {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 24px;
    color: var(--primary-color);
}

.service-description {
    font-size: 14px;
    color: var(--muted-text);
    margin-bottom: 0;
}

/* Sekcja zaufanych klientów */
.trusted-section {
    margin-top: 30px;
    text-align: center;
}

.section-title {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden; /* Opcjonalne - tylko jeśli chcesz przyciąć np. zaokrąglenia */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* Kolor tła widoczny, jeśli obrazek nie wypełnia całego kontenera */
}

.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Bez przycinania - obrazek skalowany do widoczności */
}

.info-text {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.icon-info {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.info-text p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 15px;
}

/* Responsywność */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}


:root {
    --primary-color: #2E7D32;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --muted-text: #7f8c8d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.05);
    --border-radius: 8px;
}

.sekcja-kubki {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

.naglowek {
  text-align: center;
  margin-bottom: 50px;
}

.tytul-kubki {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.opis {
  font-size: 1.2em;
  color: #555;
}

.siatka-uslug {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.karta-uslugi {
  border-radius: 12px;
  overflow: hidden;
  color: white;
  transition: transform 0.3s ease;
}

.karta-uslugi:hover {
  transform: translateY(-5px);
}

.zawartosc-karty {
  padding: 25px;
  text-align: center;
}

.ikona {
  font-size: 3em;
  margin-bottom: 15px;
}

.karta-uslugi {
  color: white;
}

.karta-uslugi a {
  color: inherit;
  text-decoration: none;
}

.karta-uslugi a:hover {
  text-decoration: none;
}

.karta-uslugi h3,
.karta-uslugi p,
.karta-uslugi .przycisk-wiecej {
  color: white;
}

.przycisk-wiecej {
  border: 1px solid white;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  font-weight: bold;
}

.tlo-firmy {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
}

.tlo-sklepy {
  background: linear-gradient(135deg, #1565C0, #0D47A1);
}

.tlo-agencje {
  background: linear-gradient(135deg, #6A1B9A, #4A148C);
}

.tlo-szkoly {
  background: linear-gradient(135deg, #0277BD, #01579B);
}

.tlo-sport {
  background: linear-gradient(135deg, #D32F2F, #B71C1C);
}

.tlo-eventy {
  background: linear-gradient(135deg, #FF8F00, #E65100);
}

.sekcja-cta {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.sekcja-cta h3 {
  color: #2E7D32;
  margin-bottom: 20px;
}

.sekcja-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

.przycisk-cta {
  padding: 15px 40px;
  font-size: 1.1em;
  display: inline-block;
  background-color: #2E7D32;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.ramka {
  border: 1px solid #ccc;
  border-left: 4px solid #2E7D32;
  padding: 15px;
  border-radius: 8px;
  background-color: #fafafa;
  font-size: 0.95rem;
}

.ramka a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.klient-info a,
.konto-box a,
.ramka a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem; /* trochę większe */
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 10px;
}

.klient-info a:hover,
.konto-box a:hover,
.ramka a:hover {
  color: #2E7D32;
  text-decoration: underline;
}

.klient-box .klient-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.klient-info img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2E7D32;
}

.klient-info p {
  margin: 0;
  line-height: 1.8;
  font-size: 1rem;
}


.info-legal {
  grid-column: span 2;
  background-color: #fffbe6;
  border-left: 6px solid #2E7D32;
  font-size: 0.9rem;
  color: #555;
}

.info-legal h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-legal p {
  margin: 0;
  line-height: 1.6;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .klient-box .klient-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .kontakt-details {
    gap: 10px;
  }

  .info-legal {
    grid-column: span 1;
  }
}

.kontakt-section {
  background: linear-gradient(to right, #f9f9f9, #f0f0f0);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.kontakt-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  grid-template-rows: auto auto;
  gap: 30px;
}

.kontakt-box {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.kontakt-box h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kontakt-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.kontakt-box ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.kontakt-box ul li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
}

.kontakt-box ul li i {
  margin-right: 8px;
  color: #2E7D32;
}

.mapa-box {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mapa-container {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #2E7D32;
}

.google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.map-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  z-index: 0;
}

.konto-box h2 {
  background-color: #2E7D32;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.konto-numer {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.btn-kopiuj {
  background-color: #2E7D32;
  color: white;
  padding: 10px 20px;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-kopiuj:hover {
  background-color: #567c00;
}

.btn-kopiuj i {
  margin-right: 8px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .kontakt-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mapa-box {
    grid-row: auto;
  }
}
.komunikat-platnosci {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #444;
  background-color: #f0f5e2;
  padding: 12px 16px;
  border-left: 4px solid #2E7D32;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.komunikat-platnosci i {
  color: #2E7D32;
}
.konto-box .ramka {
  margin-bottom: 20px;
}

.konto-numer {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  display: inline-block;
  margin: 10px 0;
}

.konto-box h2 {
  background-color: #2E7D32;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: inline-block;
}

.btn-kopiuj {
  background-color: #2E7D32;
  color: white;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-kopiuj:hover {
  background-color: #567c00;
}
/* Styl dla linków telefonicznych i mailowych */
.klient-info a,
.konto-box a,
.ramka a {
  color: #333; /* lub np. #6a9800 dla zielonego */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.klient-info a:hover,
.konto-box a:hover,
.ramka a:hover {
  color: #2E7D32;
  text-decoration: underline;
}
.kontakty {
  display: flex;
  flex-direction: column;
  gap: 30px; /* odstęp między osobami */
}

.osoba {
  display: flex;
  flex-direction: column;
  gap: 10px; /* odstęp między danymi */
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.osoba h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.nazwa, .tel, .email {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.email {
  color: #0066cc; /* niebieski dla emaila */
}

.osoba.duza {
  font-size: 1.1em;         /* nieco większy tekst */
  padding: 20px;            /* więcej przestrzeni wewnątrz */
  background-color: #f9f9f9;/* lekko wyróżniające tło (opcjonalnie) */
  border: 1px solid #ddd;   /* delikatna ramka */
  box-shadow: 0 0 8px rgba(0,0,0,0.05); /* subtelny cień */
}

#cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  color: #333;
  font-size: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

#cookie-alert a {
  color: #007bff;
  text-decoration: underline;
}

#cookie-alert button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#cookie-alert button:hover {
  background-color: #0056b3;
}

@media (max-width: 480px) {
  #cookie-alert {
    flex-direction: column;
    text-align: center;
  }
}
 .opinie-klientow {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .opinia {
        flex: 1 1 300px;
        background: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .opinia-naglowek {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .opinia-avatar {
        margin-right: 15px;
    }
    
    .opinia-avatar img {
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }
    
    .opinia-autor h4 {
        margin: 0 0 5px 0;
        font-size: 16px;
    }
    
    .opinia-gwiazdki {
        color: #FFC107;
        font-size: 18px;
    }
    
    .opinia-tresc p {
        margin: 0;
        font-style: italic;
        color: #555;
    }
    
    .przycisk-opinia {
        display: inline-block;
        background: #4285F4;
        color: white;
        padding: 12px 25px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }
    
    .przycisk-opinia:hover {
        background: #3367D6;
    }