        :root { --bg: #0f172a; --text: #f8fafc; --accent: #38bdf8; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
		body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); max-width: 1200px; margin: 1.5rem auto; padding: 2rem; line-height: 1.6; }
        h1 { color: var(--accent); font-size: 1.5rem; text-align: center; }
		.container { display: block; width: 100%; }
        .box { display: block; padding: 1rem; border: 1px solid #334155; border-radius: 8px; background: #1e293b; margin-bottom: 1.5rem }
		.main-logo { display: block; background: #ffffff; border-radius: 8px; text-decoration: none; margin: 0 auto; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);  width: 600px;  max-width: 100%; aspect-ratio: 600 / 400; }
		.title { display: flex; align-items: center; justify-content: center; padding: 1rem; margin-bottom: 1.5rem; border: 1px solid #334155; border-radius: 8px; background: #1e293b; }
		h2 { margin-bottom: 0.8rem }
		h3 { margin-bottom: 0.6rem }
		a { color: #ffffff; text-decoration: underline; transition: color 0.2s ease-in-out; }
		a:hover { color: #cccccc; }
		a:visited { color: #a0a0a0; }
		.gallery { width: 100%; box-sizing: border-box; }
		.gallery h3 { margin-bottom: 10px; font-family: sans-serif; }
		.gallery-container { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;    
    	scrollbar-width: none; -ms-overflow-style: none; } /* Ukrywanie paska przewijania w Mozilla, Edge */
		.gallery-container::-webkit-scrollbar { display: none; } /* Ukrywanie paska przewijania w Chrome, Safari, Opera */
		.gallery-item { flex: 0 0 150px; scroll-snap-align: start; text-decoration: none; color: inherit; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; display: block; background: #fff; }
		.gallery-item img { width: 100%; height: 170px; object-fit: cover; display: block; }
		.item-info h3 { margin: 0 0 5px 0; font-size: 1rem; color: #666; text-align: center; }
	    .contact { background: #1e293b; border-radius: 8px; border-left: 4px solid var(--accent); padding: 1.5rem; }
		.c-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 500px; background: #1e293b; border: 1px solid #334155; border-radius: 8px; padding: 1.2rem; box-shadow: 0 10px 25px rgba (0, 0, 0, 0.5); z-index: 9999; display: none; font-family: sans-serif; color: #f8fafc; }
		.c-banner__text { margin: 0 0 1rem 0; font-size: 0.9rem; line-height: 1.4; }
		.c-banner__link { color: #00d2ff; text-decoration: underline; }
		.c-banner__actions { display: flex; justify-content: flex-end; gap: 10px; }
		.c-btn { padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; font-size: 0.85rem; transition: background 0.2s ease, border-color 0.2s ease; }
		.c-btn--secondary { background: transparent; border: 1px solid #475569; color: #94a3b8; }
		.c-btn--secondary:hover { background: rgba(71, 85, 105, 0.2); color: #f8fafc; }
		.c-btn--primary { background: #0066ff; border: none; color: white; font-weight: bold; padding: 0.5rem 1.2rem; }
		.c-btn--primary:hover { background: #0052cc;}
		footer { margin-top: 4rem; font-size: 0.85rem; opacity: 0.5; text-align: center; }

	/* Responsywność: Na większych ekranach */
	@media (min-width: 768px)  {
        h1 { font-size: 2rem; }
	    .main-logo { max-width: 70%; }
		.gallery-item { flex: 0 0 250px; }
		.gallery-item img {height: 300px;}
		.item-info h3 {font-size: 1.2rem; }
		.box .title { padding: 1.5rem;}
		.container { display: flex; justify-content: space-between; width: 100%; margin-bottom: 1.5rem }
		.container .title { float: none; width: 49%; margin-bottom: 0; min-height: 200px; margin-right: 0; }
		.container .box { display: block; float: none; width: 49%; margin-bottom: 0; min-height: 200px; }
		.container .box:last-child { margin-right: 0; }	
	}
	