/* Reset i style bazowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Nagłówek */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    height: 50px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}
.logo-container:hover .logo {
    transform: scale(1.1);
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #007BFF;
}

/* Sekcja Kontakt */
.contact {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
}
.contact h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #007BFF;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}
.contact p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}
.contact p strong {
    color: #007BFF;
}

/* Stopka */
footer {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
}

/* Animacje */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsywność */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .contact {
        margin: 30px 10px;
        padding: 20px;
    }
}
