.site-footer {
    background-color: var(--law-blue);
    color: white;
    padding: 15px 0;
    max-width: 1400px;
    margin: 20px auto 0;
    width: calc(100% - 40px);
    height: 200px; /* Ύψος του footer */
    box-sizing: border-box;
    border-radius: 8px 8px 0 0;
    padding: 40px 0; /* 40px πάνω, 40px κάτω */
    
    /* Κεντράρισμα περιεχομένου κάθετα */
    display: flex;
    align-items: center; /* Κεντράρισμα κάθετα */
    justify-content: center;
}

.site-footer {
    background-color: var(--law-blue);
    color: white;
    max-width: 1400px;
    width: calc(100% - 40px);
    margin: 0 auto; /* ΜΗΔΕΝΙΚΟ margin-top, μόνο auto για κεντράρισμα */
    padding: 40px 0; /* Ισόποσο padding πάνω-κάτω */
    box-sizing: border-box;
    
    /* Εξασφάλιση ότι το footer μένει ΚΑΤΩ */
    position: relative;
    bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center; /* Επιπλέον κεντράρισμα */
    width: 100%; /* Γεμίζει όλο το πλάτος του footer */
    gap: 20px;
    padding: 0 20px; /* Οριζόντιο padding */
}

.footer-column {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.footer-column h3 {
    font-size: 16px; /* Μικρότερο για λιτότητα */
    margin-bottom: 10px;
    white-space: nowrap; /* Αποφυγή αλλαγής γραμμής */
    /*text-decoration: underline;*/
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    white-space: nowrap; /* Οι σύνδεσμοι δεν αλλάζουν γραμμή */
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px; /* Μικρότερο μέγεθος */
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f1c40f;
}

.ul-title {
    font-weight: bold;
}

/* Responsive ρυθμίσεις */
@media (max-width: 768px) {
    .site-footer {
        height: auto; /* Αυτόματο ύψος σε κινητά */
        padding: 30px 0;
    }

    .footer-content {
        flex-direction: column; /* Στήλες κάτω από κάθε άλλο */
        gap: 20px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }
}