/* --- Footer --- */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*background: #1a237e;
    color: white;*/
    padding: 20px 0;
    margin-top: 60px;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    border-radius: 10px; /* zaokrąglenie rogów */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-column {
    flex: 1 1 30%;
    min-width: 200px;
    margin-bottom: 10px;
}

.footer-column h6 {
    margin-bottom: 8px;
    color: #1a237e;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #1a237e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c62828;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
}

.footer-heading {
    font-size: 16px;
    font-weight: bold;
    color: #1a237e;
    margin-bottom: 8px;
}


/* --- Mobile RESPONSYWNOŚĆ --- */

.newsletter-footer-checkbox {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.newsletter-footer-checkbox input[type="checkbox"] {
    margin-right: 6px;
}

.newsletter-footer-checkbox a {
    color: #1a237e;
    text-decoration: underline;
}

.newsletter-footer-submit {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.3s;
}

.newsletter-footer-submit:hover {
    background: #3949ab;
    transform: scale(1.03);
}

/* Kolumna Newsletter - pozycjonowanie */
.footer-column.newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 280px; /* stała szerokość całej kolumny */
    margin-right: 20px; /* ODDAJEMY odstęp od kolumny Kontakt */
}

.newsletter-form-footer {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
}

/* Nagłówek newslettera */
.footer-column.newsletter h4 {
    text-align: center; /* zmieniamy na center */
    margin: 20px 0 20px 0;
    font-size: 16px;
    color: white;
    width: 100%; /* Dostosuj szerokość h4 */
    max-width: 320px; /* Tyle co newsletter-form-footer */
}

