/* Globalne ustawienia */
body {
    font-family: Saira Condensed, sans-serif;
    background-color: #95D7F4;
    color: white;
}

/* Baner na górze strony */
.banner {
    background-color: #104E8B;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Nagłówek w banerze */
.banner h1 {
    margin: 0;
    text-align: center;
    flex: 1;
}

/* Kontener */
.container {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 20px 20px;
    overflow-y: scroll;
}

/* Prostokąt z ciemniejszym niebieskim tłem i zaokrąglonymi rogami */
.content-box {
    background: linear-gradient(135deg, #0695D1, #0695D1);
    border-radius: 40px;
    padding: 40px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}
h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: justify;
}

/* Opis */
p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: -10px;
    text-align: justify;
}

/* Punkty */
ul {
    padding-left: 20px;
}

ul li {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Kontener zdjęcia */
.image-container {
    text-align: center;
    margin: 10px 0;
}

/* Stylowanie samego obrazu */
.image-container img {
    border-radius: 15px;
    max-width: 50%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Animacja po najechaniu na obrazek */
.image-container:hover img {
    transform: scale(1.08);
}

/* Nagłówek doświadczenia */
h2 {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Cennik na małym kwadracie */
.pricing-box {
    transition: transform 0.3s ease-in-out;
    background-color: #104E8B;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pricing-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-box ul {
    list-style-type: none;
    padding: 0;
}

.pricing-box li {
    font-size: 18px;
    margin: 10px 0;
}
.pricing-box:hover {
    transform: scale(1.05);
}

/* Stopka */
footer {
    background-color: #104E8B;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-info p {
    margin: 5px 0;
    font-size: 14px;
}

.social-links a {
    margin-left: 15px;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

.scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, red, yellow, green);
    background-size: 300%;
    width: 0%;
    z-index: 1000;
    transition: width 0.25s;
}

/* Styl dla urządzeń mobilnych */
@media (max-width: 768px) {
    /* Zmniejszenie czcionek */
    body {
        font-size: 14px; /* Przykładowa mniejsza czcionka */
    }

    h1 {
        font-size: 16px; /* Mniejszy rozmiar nagłówka */
    }

    h2 {
        font-size: 16px; /* Mniejszy rozmiar nagłówka */
    }

    h3 {
        font-size: 14px; /* Mniejszy rozmiar nagłówka */
    }

    p {
        font-size: 12px; /* Mniejszy rozmiar tekstu */
    }

    ul li {
        font-size: 11px; /* Mniejsze punkty w liście */
    }

    /* Zmniejszenie rozmiarów obrazów */
    .image-container img {
        max-width: 80%; /* Zmniejszenie maksymalnej szerokości obrazów */
        height: auto; /* Utrzymanie proporcji */
    }

    /* Dostosowanie do mobilnych urządzeń (pomniejszenie kontenerów) */
    .content-box {
        padding: 20px; /* Mniejsze paddingi */
        width: 90%; /* Mniejsza szerokość */
    }

/* Dostosowanie cennika */
    .pricing-box {
        padding: 5px; /* Mniejsze paddingi */
        font-size: 8px; /* Zmniejszenie rozmiaru czcionki w cenniku */
        width: 80%; /* Mniejsza szerokość cennika */
        margin: 0 auto; /* Wyśrodkowanie cennika */
    }

    .pricing-box h3 {
        font-size: 8px; /* Mniejszy rozmiar czcionki nagłówka w cenniku */
    }
.pricing-box ul {
        font-size: 2px; /* Zmniejszenie czcionki listy */
        padding-left: 2px; /* Zmniejszenie paddingu w liście */
    }

    .pricing-box li {
        margin-bottom: 2px; /* Zmniejszenie marginesów między elementami listy */
        font-size: 6px; /* Zmniejszenie czcionki punktów listy */
    }
    /* Wyrównanie elementów */
    .container {
        padding: 4px; /* Mniejsze odstępy wewnętrzne */
    }

     footer .company-info p {
        margin: 3px 0;
        font-size: 8px; /* Zmniejszenie czcionki na mobilnym */
    }

    footer .social-links a {
        margin-left: 6px;
        font-size: 8px; /* Zmniejszenie czcionki na mobilnym */
        color: white;
        text-decoration: none;
    }
  
    /* Nagłówek w banerze */
    .banner h1 {
        font-size: 12px; /* Mniejszy rozmiar tekstu w nagłówku banera */
    }
}
