/* Reset domyślnych stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styl dla całej strony */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Nagłówek */
header {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

header h1 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    text-decoration: underline;
    font-size: 4rem;
    margin-bottom: 0;
}

nav {
    /* Pełna szerokość */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    padding-bottom: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 5px 2px;
}

nav a:hover {
    border-bottom: 2px solid #ffff00;
}

/* Główna treść */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

/* Linia oddzielająca pod sekcjami - pełna szerokość */
section::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    width: 100vw;
    height: 1px;
    background: #666;
    margin-left: -50vw;
}

/* Wyłączenie linii dla sekcji Kontakt */
#contact::after {
    display: none;
}

section h2 {
    color: #333;
    margin-bottom: 1rem;
}

/* Styl dla listy w sekcjach */
section ul {
    list-style: square;
    margin: 1rem 0;
    padding-left: 20px;
}

section li {
    margin-bottom: 0.5rem;
}

/* Styl dla ostatniego akapitu w instalacjach */
#instalacje p:last-of-type {
    margin-bottom: 1rem;
}

/* Styl dla kontenera przycisku */
.btn-container {
    text-align: right;
}

/* Styl dla przycisku */
.btn {
    display: inline-block;
    background: #333;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #ffff00;
    color: #333;
}

/* Styl dla sekcji Kontakt */
.contact-info {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-info strong {
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-info a {
    color: #000;
    text-decoration: none;
}

.contact-info a:hover {
    color: #000;
}

/* Stopka */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Przycisk Powrót na górę */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition