/* Footer Custom Styles */
.site-footer {
    background-color: transparent;  /* Διαφανές φόντο */
    color: white;                   /* Λευκό κείμενο */
    padding: 2rem;
    text-align: left;               /* Στοίχιση στα αριστερά */
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;  /* Κεντράρισμα του container όπως στο header */
    padding: 0 1rem;
    display: flex;
    flex-direction: column;  /* Στοιχίζει τα περιεχόμενα κάθετα */
    align-items: flex-start; /* Στοίχιση στα αριστερά */
}


.site-footer .footer-widgets {
    display: flex;
    justify-content: flex-start;    /* Στοίχιση στα αριστερά */
    flex-wrap: wrap;
}

.site-footer .footer-widget-area {
    flex: 1 1 300px;
    margin-right: 2rem;
}

.site-footer .footer-info {
    margin-top: 1.5rem;
    text-align: left;               /* Στοίχιση πληροφοριών στα αριστερά */
}

.site-footer .footer-info p {
    margin: 0.5rem 0;
    color: white;
}

.site-footer .footer-info a {
    color: #ff69b4;                 /* Ροζ χρώμα για τα links */
    text-decoration: none;
}

.site-footer .footer-info a:hover {
    color: white;                   /* Λευκό στα hover */
}
