{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: #333;
        }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: flex;
            align-items: center;
            gap: 60px;
            min-height: 600px;
        }

        .hero-content {
            flex: 1;
        }

        .badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid #00bcd4;
            border-radius: 25px;
            color: #00bcd4;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #0056b3;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-description {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 500px;
        }

        .buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .btn-primary {
            background: #0056b3;
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: #004494;
        }

        .btn-secondary {
            background: transparent;
            color: #0056b3;
            padding: 14px 28px;
            border: 2px solid #0056b3;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #0056b3;
            color: white;
        }

        .stats {
            display: flex;
            gap: 48px;
            padding-top: 32px;
            border-top: 1px solid #e0e0e0;
        }

        .stat-item h3 {
            font-size: 32px;
            font-weight: 800;
            color: #0056b3;
            margin-bottom: 4px;
        }

        .stat-item p {
            font-size: 14px;
            color: #666;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Efekt tła z gradientem */
        .bg-effect {
            position: absolute;
            top: -20px;
            right: -20px;
            bottom: -20px;
            left: -20px;
            background: linear-gradient(135deg, rgba(0,188,212,0.1) 0%, rgba(0,86,179,0.05) 100%);
            border-radius: 20px;
            z-index: -1;
        }

        /* Responsywność */
        @media (max-width: 968px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-description {
                max-width: 100%;
            }

            .buttons {
                justify-content: center;
            }

            .stats {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .buttons {
                flex-direction: column;
            }

            .stats {
                flex-direction: column;
                gap: 24px;
            }
        }
				.contact-section {
						padding: 60px 20px;
						background: #ffffff;
				}

				.contact-container {
						max-width: 1140px;
						margin: 0 auto;
						display: flex;
						gap: 50px;
						align-items: flex-start;
				}

				/* ========== LEWA STRONA ========== */
				.contact-left {
						flex: 1;
						min-width: 0;
				}

				.contact-tag {
						display: inline-block;
						background: #e8f4fc;
						color: #0077b6;
						padding: 8px 20px;
						border-radius: 20px;
						font-size: 0.85rem;
						font-weight: 500;
						margin-bottom: 20px;
						border: 1px solid #d0e8f7;
				}

				.contact-left h2 {
						font-size: 2.6rem;
						color: #005a8c;
						margin-bottom: 12px;
						line-height: 1.15;
						font-weight: 700;
				}

				.contact-left > p {
						color: #666;
						font-size: 1rem;
						line-height: 1.6;
						margin-bottom: 35px;
				}

				.contact-items {
						display: flex;
						flex-direction: column;
						gap: 16px;
				}

				.contact-item {
						display: flex;
						align-items: center;
						gap: 18px;
						background: #fff;
						border-radius: 12px;
						padding: 22px 24px;
						box-shadow: 0 2px 12px rgba(0,0,0,0.06);
						border: 1px solid #f0f0f0;
						transition: transform 0.25s ease, box-shadow 0.25s ease;
				}

				.contact-item:hover {
						transform: translateY(-2px);
						box-shadow: 0 8px 25px rgba(0,0,0,0.1);
				}

				.contact-item .icon {
						width: 48px;
						height: 48px;
						background: #0099cc;
						border-radius: 10px;
						display: flex;
						align-items: center;
						justify-content: center;
						flex-shrink: 0;
				}

				.contact-item .icon svg {
						width: 22px;
						height: 22px;
						fill: none;
						stroke: #fff;
						stroke-width: 2;
						stroke-linecap: round;
						stroke-linejoin: round;
				}

				.contact-item > div:last-child {
						display: flex;
						flex-direction: column;
				}

				.contact-item strong {
						color: #005a8c;
						font-size: 1rem;
						font-weight: 700;
						margin-bottom: 3px;
				}

				.contact-item span {
						color: #666;
						font-size: 0.9rem;
						line-height: 1.5;
				}

				/* ========== PRAWA STRONA - FORMULARZ ========== */
				.contact-form-box {
						flex: 1;
						min-width: 0;
				}

				.contact-form-box .container {
						background: #fff;
						border-radius: 16px;
						padding: 40px;
						box-shadow: 0 4px 24px rgba(0,0,0,0.08);
						border: 1px solid #f0f0f0;
				}

				.form-section h2 {
						display: none;
				}

				.form-group {
						margin-bottom: 20px;
				}

				.form-group label {
						display: block;
						font-size: 0.88rem;
						color: #333;
						margin-bottom: 8px;
						font-weight: 500;
				}

				.form-group label .required {
						color: #e74c3c;
				}

				.form-group input[type="text"],
				.form-group input[type="email"],
				.form-group select,
				.form-group textarea {
						width: 100%;
						padding: 14px 16px;
						border: 1px solid #e2e2e2;
						border-radius: 10px;
						font-size: 0.95rem;
						color: #333;
						background: #fff;
						transition: border-color 0.2s, box-shadow 0.2s;
						font-family: inherit;
				}

				.form-group input[type="text"]::placeholder,
				.form-group input[type="email"]::placeholder,
				.form-group textarea::placeholder {
						color: #aaa;
				}

				.form-group input[type="text"]:focus,
				.form-group input[type="email"]:focus,
				.form-group select:focus,
				.form-group textarea:focus {
						outline: none;
						border-color: #0099cc;
						box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
				}

				.form-group textarea {
						resize: vertical;
						min-height: 110px;
				}

				.form-group select {
						cursor: pointer;
						appearance: none;
						background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
						background-repeat: no-repeat;
						background-position: right 16px center;
						padding-right: 42px;
						color: #666;
				}

				.form-group select option {
						color: #333;
				}

				.form-group input[type="checkbox"] {
						width: auto;
						margin-right: 10px;
						cursor: pointer;
						accent-color: #0099cc;
				}

				.form-group label:has(input[type="checkbox"]) {
						display: flex !important;
						align-items: flex-start;
						font-weight: normal;
						cursor: pointer;
						font-size: 0.82rem;
						color: #555;
						line-height: 1.4;
				}

				.service-btn {
						width: 100%;
						padding: 16px 24px;
						background: #0077b6;
						color: #fff;
						border: none;
						border-radius: 10px;
						font-size: 1rem;
						font-weight: 600;
						cursor: pointer;
						transition: all 0.25s ease;
						margin-top: 8px;
						letter-spacing: 0.3px;
				}

				.service-btn:hover {
						background: #005a8c;
						transform: translateY(-1px);
						box-shadow: 0 6px 20px rgba(0, 90, 140, 0.25);
				}

				.service-btn:active {
						transform: translateY(0);
				}

				.form-footer-text {
						text-align: center;
						margin-top: 16px;
						font-size: 0.8rem;
						color: #888;
				}

				/* ========== RESPONSYWNOŚĆ ========== */
				@media (max-width: 900px) {
						.contact-container {
								flex-direction: column;
								gap: 40px;
						}

						.contact-left h2 {
								font-size: 2rem;
						}
				}

				@media (max-width: 480px) {
						.contact-section {
								padding: 40px 15px;
						}

						.contact-left h2 {
								font-size: 1.7rem;
						}

						.contact-form-box .container {
								padding: 28px 22px;
						}

						.contact-item {
								padding: 18px 16px;
						}

						.contact-item .icon {
								width: 44px;
								height: 44px;
						}

						.contact-item .icon svg {
								width: 20px;
								height: 20px;
						}
					}
					.services-section {
							max-width: 1200px;
							margin: 0 auto;
							padding: 60px 20px;
					}

					.section-header {
							margin-bottom: 50px;
					}

					.section-tag {
							display: inline-block;
							background-color: #e8f4fc;
							color: #0a6ebd;
							font-size: 13px;
							font-weight: 600;
							padding: 6px 16px;
							border-radius: 20px;
							margin-bottom: 15px;
					}

					.section-title {
							font-size: 42px;
							font-weight: 800;
							color: #0a6ebd;
							line-height: 1.15;
							margin-bottom: 15px;
							max-width: 500px;
					}

					.section-subtitle {
							font-size: 16px;
							color: #666;
							max-width: 520px;
							line-height: 1.5;
					}

					.services-grid {
							display: grid;
							grid-template-columns: repeat(3, 1fr);
							gap: 25px;
					}

					.service-card {
							background-color: #fff;
							border-radius: 12px;
							overflow: hidden;
							box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
							transition: transform 0.3s ease, box-shadow 0.3s ease;
					}

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

					/* POPRAWKA: Kontener obrazka z position: relative */
					.card-image-wrapper {
							position: relative;
							width: 100%;
							height: 200px;
							overflow: hidden;
							background: linear-gradient(135deg, #e8f4fc 0%, #d0e8f7 100%);
					}

					.card-image {
							position: absolute;
							top: 0;
							left: 0;
							width: 100%;
							height: 100%;
							object-fit: cover;
							display: block;
					}

					.card-body {
							padding: 25px;
					}

					.card-icon {
							width: 44px;
							height: 44px;
							background-color: #0a6ebd;
							border-radius: 8px;
							display: flex;
							align-items: center;
							justify-content: center;
							margin-bottom: 15px;
					}

					.card-icon svg {
							width: 22px;
							height: 22px;
							fill: #fff;
					}

					.card-title {
							font-size: 18px;
							font-weight: 700;
							color: #0a6ebd;
							margin-bottom: 10px;
					}

					.card-description {
							font-size: 14px;
							color: #666;
							line-height: 1.6;
							margin-bottom: 20px;
					}

					.card-divider {
							height: 1px;
							background-color: #e8e8e8;
							margin-bottom: 15px;
					}

					.card-features {
							list-style: none;
					}

					.card-features li {
							font-size: 14px;
							color: #555;
							margin-bottom: 8px;
							display: flex;
							align-items: center;
							gap: 8px;
					}

					.card-features li::before {
							content: "";
							width: 6px;
							height: 6px;
							background-color: #0a6ebd;
							border-radius: 50%;
							flex-shrink: 0;
					}

					@media (max-width: 992px) {
							.services-grid {
									grid-template-columns: repeat(2, 1fr);
							}
					}

					@media (max-width: 768px) {
							.services-grid {
									grid-template-columns: 1fr;
							}

							.section-title {
									font-size: 32px;
							}
					}
					/* ========== STOPKA ========== */
			 .footer {
					 background: #005a8c;
					 color: #fff;
					 padding: 50px 20px 0;
			 }

			 .footer-container {
					 max-width: 1200px;
					 margin: 0 auto;
					 display: flex;
					 gap: 60px;
					 padding-bottom: 40px;
			 }

			 /* Kolumny */
			 .footer-col {
					 flex: 1;
					 min-width: 0;
			 }

			 .footer-col.brand {
					 flex: 1.3;
			 }

			 /* Logo */
			 .footer-logo {
					 display: flex;
					 align-items: center;
					 gap: 12px;
					 margin-bottom: 16px;
			 }

			 .footer-logo-icon {
					 width: 40px;
					 height: 40px;
					 background: rgba(255,255,255,0.2);
					 border-radius: 8px;
					 display: flex;
					 align-items: center;
					 justify-content: center;
					 font-size: 1.2rem;
					 font-weight: 700;
					 color: #fff;
			 }

			 .footer-logo-text {
					 display: flex;
					 flex-direction: column;
			 }

			 .footer-logo-text strong {
					 font-size: 1.1rem;
					 font-weight: 700;
					 line-height: 1.2;
			 }

			 .footer-logo-text span {
					 font-size: 0.8rem;
					 opacity: 0.8;
					 line-height: 1.2;
			 }

			 /* Opis */
			 .footer-desc {
					 font-size: 0.9rem;
					 line-height: 1.6;
					 opacity: 0.85;
					 max-width: 280px;
			 }

			 /* Nagłówki kolumn */
			 .footer-col h4 {
					 font-size: 1rem;
					 font-weight: 600;
					 margin-bottom: 20px;
					 color: #fff;
			 }

			 /* Linki */
			 .footer-links {
					 list-style: none;
					 display: flex;
					 flex-direction: column;
					 gap: 12px;
			 }

			 .footer-links a {
					 color: rgba(255,255,255,0.85);
					 text-decoration: none;
					 font-size: 0.9rem;
					 transition: color 0.2s;
			 }

			 .footer-links a:hover {
					 color: #fff;
			 }

			 /* Kontakt */
			 .footer-contact-list {
					 list-style: none;
					 display: flex;
					 flex-direction: column;
					 gap: 14px;
			 }

			 .footer-contact-list li {
					 display: flex;
					 align-items: flex-start;
					 gap: 10px;
					 font-size: 0.9rem;
					 color: rgba(255,255,255,0.9);
			 }

			 .footer-contact-list li svg {
					 width: 16px;
					 height: 16px;
					 fill: none;
					 stroke: rgba(255,255,255,0.7);
					 stroke-width: 2;
					 stroke-linecap: round;
					 stroke-linejoin: round;
					 flex-shrink: 0;
					 margin-top: 2px;
			 }

			 .footer-contact-list li a {
					 color: rgba(255,255,255,0.9);
					 text-decoration: none;
					 transition: color 0.2s;
			 }

			 .footer-contact-list li a:hover {
					 color: #fff;
			 }

			 /* Dolny pasek */
			 .footer-bottom {
					 border-top: 1px solid rgba(255,255,255,0.15);
					 max-width: 1200px;
					 margin: 0 auto;
					 padding: 20px 0;
					 display: flex;
					 justify-content: space-between;
					 align-items: center;
					 font-size: 0.8rem;
					 color: rgba(255,255,255,0.7);
			 }

			 .footer-bottom a {
					 color: rgba(255,255,255,0.7);
					 text-decoration: none;
					 transition: color 0.2s;
			 }

			 .footer-bottom a:hover {
					 color: #fff;
			 }

			 .footer-bottom-links {
					 display: flex;
					 gap: 20px;
			 }

			 /* RESPONSYWNOŚĆ */
			 @media (max-width: 900px) {
					 .footer-container {
							 flex-wrap: wrap;
							 gap: 40px 30px;
					 }

					 .footer-col {
							 flex: 1 1 45%;
					 }

					 .footer-col.brand {
							 flex: 1 1 100%;
					 }
			 }

			 @media (max-width: 480px) {
					 .footer-container {
							 flex-direction: column;
							 gap: 30px;
					 }

					 .footer-col {
							 flex: 1 1 100% !important;
					 }

					 .footer-bottom {
							 flex-direction: column;
							 gap: 10px;
							 text-align: center;
					 }
			 }
