/* ====== Ogólne ustawienia ====== */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fdfdfc;
    color: #333;
}

/* ====== Nagłówek ====== */
header {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
}

.logo {
    max-width: 75px;
    height: auto;
}

/* ====== Nawigacja ====== */
.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-list li a,
.nav-list a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

/* ====== Facebook ====== */
.facebook-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    max-width: 250px;
    text-align: right;
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* ====== Sekcje treści ====== */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #8b0000;
}

.section p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
}

/* ====== Stopka ====== */
footer {
    background: #222;
    color: #eee;
    padding: 40px 20px;
    text-align: center;
}
