body {
    position: relative; /* Potrzebne dla fixed-bottom stopki */
    padding-bottom: 60px; /* Wysokość stopki, aby treść nie była zasłonięta */
}

.parallax-section {
    position: relative;
    height: 500px; /* Dostosuj wysokość sekcji paralaksy */
    background-image: url('background.jpg'); /* Zmień na ścieżkę do Twojego obrazu tła */
    background-attachment: fixed; /* Kluczowy element dla efektu paralaksy */
    background-size: cover;
    background-position: center;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ciemniejsze tło dla lepszej czytelności tekstu */
}

.parallax-section .container {
    position: relative; /* Aby tekst był nad warstwą ::before */
    z-index: 10;
}

/* Dodatkowe style dla nowoczesnego wyglądu */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    font-size: 1.1rem;
    margin-left: 15px;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card {
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.form-control {
    border-radius: 5px;
}

footer {
    font-size: 0.9rem;
}