
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    padding: 20px;
    background: #fff;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo {
    height: 60px;
    max-width: 100%;
}

.contact-header p {
    margin: 5px 0;
    text-align: right;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

main h1 {
    font-size: 2em;
    color: #e06600;
}

h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #222;
}

ul {
    margin-left: 20px;
}

.review-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0a66c2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

footer .jubilatka img {
    max-width: 120px;
    height: auto;
    margin: 10px auto;
}

footer .zommer {
    margin-top: 15px;
    font-size: 0.9em;
}

/* Dodatkowo responsywne poprawki dla większych ekranów */
@media screen and (min-width: 768px) {
    .logo {
        height: 50px;
    }

    footer .jubilatka img {
        max-width: 100px;
    }
}
