.footer {
    background-color: #f7f7f7; /* Colore chiaro per far risaltare il logo */
    color: #333; /* Testo scuro per contrasto */
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 120px; /* Ridimensionamento per rendere il logo meno invasivo */
    height: auto;
    transition: transform 0.3s ease;
}

.footer-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-text {
    margin: 5px 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ddd; /* Linea sottile per separare */
    padding-top: 10px;
    color: #666; /* Colore testo leggermente più chiaro */
}

.footer-bottom p, .footer-bottom a {
    margin: 5px 0;
    font-size: 0.9em; /* Dimensione leggermente ridotta */
    color: #333;
}

.footer-bottom a {
    color: #007bff; /* Link in blu per richiamare il colore del logo */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
