body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    padding: 20px;
    margin: 20px auto;
    width: 90%; /* Zmniejszenie szerokości o 10% */
    max-width: 1000px; /* Opcjonalnie możesz dodać maksymalną szerokość */
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Delikatniejszy cień */
    text-align: center;
    border-radius: 10px; 
    transition: all 0.3s ease;
}

header {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    height: 100px;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* Lekki efekt powiększenia */
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background: url('images/banner1.png') no-repeat center center;
  background-size: cover;
  height: 250px; /* lub inna konkretna wysokość */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    margin-right: 20px;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #a6c9ee;
    color: #fff;
}

.horizontal-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    flex-wrap: wrap;
}

.horizontal-menu li a {
    text-decoration: none;
    padding: 10px 20px;
    color: #333;
    background-color: #eee;
    border-radius: 30px;
    transition: background-color 0.6s ease, color 0.6s ease;
}

.horizontal-menu li a:hover {
    background-color: #a6c9ee;
    color: #000000;
}
.intro {
    background-color: #f9f9f9; 
    padding: 40px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.intro h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro b {
    font-weight: 700;
}
.services {
    padding: 40px;
    margin-top: 30px;

}

.services h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.services ul {
    list-style-type: none;
    padding-left: 0;
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px; 
}

.services ul li {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services ul li strong {
    color: #a6c9ee;
}
.tekst1{
    padding: 40px;
    margin-top: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.tekst2{
    padding: 40px;
    margin-top: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.tekst3{
    padding: 40px;
    margin-top: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.tekst4{
    padding: 40px;
    margin-top: 30px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
 footer {
    background-color: #d8c9ba; /* Kolor tła stopki */
    color: #333; /* Kolor czcionki (zmieniony z białego na ciemny) */
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 1rem; /* Opcjonalnie: rozmiar czcionki */
    font-weight: 500; /* Opcjonalnie: pogrubienie */
    width: auto;
    border-top: 1px solid #ccc;
    border-radius: 0 0 10px 10px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 0.95rem;
}
.koniec {
    text-align: center;
    font-size: 1.2rem;
    color: #333; 
    
}
