 body {
            font-family: Arial, sans-serif;
        }

@media (min-width: 992px) {
 .hero {
    background: url('image/bg.png') center center / contain no-repeat;
	background-color: #000;
    color: white;
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px; /* większe paddingi góra/dół */
    box-sizing: border-box; /* ważne żeby padding nie psuł wysokości */
    margin: 0;
 }
}

@media (max-width: 991px) {
 .hero {
    background: url('image/bg.png') center center / contain no-repeat;
	color: white;
    text-align: center;
    padding: 100px 20px;
	background-color: #000;
	}
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content .btn {
      background-color: #004080;
            color: white;
            padding: 10px 20px;
            border: none;
            text-decoration: none;
}
        .service-item {
            background-size: cover;
            background-position: center;
            color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
        }
		
		.service-item2 {
    background-color: #000; /* czarne tło */
    color: white;
    border-radius: 10px;
}

.service-item2 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* opcjonalnie zaokrąglenie zdjęcia */
}

        .about, .contact {
            padding: 60px 20px;
			text-align: center;
        }
        footer {
            background-color: #00264d;
            color: white;
            text-align: center;
            padding: 20px 0;
        }