/* Resetowanie domyślnych marginesów i paddingu */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Pełna wysokość strony */
html, body {
    height: 100%;
}

/* Wrapper dla całej strony */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Główna zawartość zajmuje całą dostępną przestrzeń */
.main-content {
    flex: 1;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/* Footer content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Footer logo */
.footer-logo img {
    width: 150px;
    max-height: 200px;
    transition: transform 0.3s ease;
}
.footer-logo:hover img {
    transform: scale(1.1);
}

/* Footer contact */
.footer-contact {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-contact p strong {
    color: #ffa500;
}

/* Responsywność - dla mniejszych ekranów */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo img {
        width: 120px;
    }
    .footer-contact p {
        font-size: 14px;
    }
}
