* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f4f7;
    color: #172033;
    padding-bottom: 50px;
}

.gora {
    text-align: center;
    background: #172033;
    color: white;
    padding: 30px 20px;
}

.logo-pasek img {
    display: block;
    width: 140px !important;
    height: auto !important;
    max-width: 140px !important;
    margin: 0 auto !important;
}

.gora h2 {
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: normal;
}

.gora h1 {
    margin: 0;
    font-size: 52px;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #172033;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.2s;
}

.nav a:hover {
    background: #172033;
    color: white;
}

hr {
    margin: 0;
    border: 0;
    border-top: 1px solid #ddd;
}

main {
    text-align: center;
    padding: 50px 20px 20px;
}

main h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

main h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 25px;
}

main > a {
    display: inline-block;
    background: #172033;
    color: white;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 8px;
    transition: 0.2s;
}

main > a:hover {
    background: #293852;
}

.kafelki {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.kafelek {
    background: white;
    width: 250px;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.kafelek:hover {
    transform: translateY(-4px);
}

.kafelek h3 {
    margin-top: 0;
    font-size: 21px;
}

.kafelek p {
    color: #555;
}

.kafelek strong {
    font-size: 20px;
}

.oferta {
    text-align: center;
    padding: 30px 20px 50px;
}

.oferta h2 {
    font-size: 30px;
}

.oferta a {
    display: inline-block;
    background: #172033;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.2s;
}

.oferta a:hover {
    background: #293852;
}

.platnosc {
    margin-top: 25px;
    font-weight: bold;
}

@media (max-width: 700px) {
    .gora h1 {
        font-size: 42px;
    }

    main h1 {
        font-size: 30px;
    }

    .kafelki {
        flex-direction: column;
        align-items: center;
    }

    .kafelek {
        width: min(100%, 350px);
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #172033;
    color: white;
    text-align: center;
    padding: 12px;
    z-index: 1000;
}

html {
    scroll-behavior: smooth;
}

.kontakt {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.kontakt .kafelek {
    width: 500px;
}

form {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 8px;
}

form input,
form select,
form textarea {
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 7px;
}

form textarea {
    min-height: 100px;
    resize: vertical;
}

form button {
    margin-top: 10px;
    padding: 12px;
    border: 0;
    border-radius: 8px;
    background: #172033;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background: #293852;
}

.mapa {
    max-width: 1000px;
    margin: 40px auto;
    padding: 25px 20px;
    text-align: center;
}

.mapa h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.mapa p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.mapa iframe {
    display: block;
    width: 100%;
    height: 550px;
    border: 0;
    border-radius: 12px;
}

@media (max-width: 700px) {
    .mapa {
		width: 100%;
        height: 450px;
    }

    .mapa h2 {
        font-size: 25px;
    }

    .mapa iframe {
        height: 450px;
    }
}

.mapa-komputer iframe { 
display: block; 
width: 100%; 
height: 550px; 
border: 0; 
border-radius: 12px; 
} 

.mapa-telefon {
display: none; 
} 

.mapa-telefon a {
display: inline-block;
 background: #172033;
 color: white;
 text-decoration: none;
 padding: 13px 20px;
 border-radius: 8px;
 font-weight: bold;
 transition: 0.2s;
 } 
 
 .mapa-telefon a:hover {
background: #293852; 
} 

@media (max-width: 700px) {
	
.mapa-komputer {
display: none; 
} 
.mapa-telefon { 
display: block; 
text-align: center; 
   }
 }