body {
    overflow-x:hidden;
}

.container {
    min-height: 150pt;
}


.text-grey {
    color: var(--grey);
}

.footer {
    bottom: 0;
    width: 100%;
    background: white;
    background-color: #28416a;
}

/* Sezione principale del footer */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 60px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

/* Colonna con logo */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-logo {
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 25px;
}

    .footer-logo img {
        height: 45px;
        width: auto;
    }

/* Links nelle colonne */
.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 4px;
    }

        .footer-col ul li a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.2s ease;
        }

            .footer-col ul li a:hover {
                color: #ffffff;
            }

            .footer-col ul li a strong,
            .footer-col ul li strong {
                color: #ffffff;
                font-weight: 600;
            }

        /* Testo semplice (non link) */
        .footer-col ul li span {
            color: #8b9eb3;
            font-size: 14px;
        }

/* Pulsante Area Riservata */
.btn-area-riservata {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    text-align: center;
    margin-top: 10px;
}

    .btn-area-riservata:hover {
        background-color: #1d4ed8;
    }

/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
    background-color: #28416a;
    padding: 20px 60px;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    font-size: 13px;
    line-height: 1.8;
}

    .footer-bottom-content a {
        color: white;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-bottom-content a:hover {
            color: #ffffff;
        }

.footer-separator {
    margin: 0 8px;
    color: white;
}

/* ==================== RESPONSIVE ==================== */
@@media (max-width: 1100px) {
    .footer-main {
        padding: 40px 40px 30px 40px;
    }

    .footer-bottom {
        padding: 20px 40px;
    }
}

@@media (max-width: 900px) {
    .footer-main {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
        min-width: 200px;
    }
}

@@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        padding: 35px 25px 25px 25px;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        flex: 1 1 100%;
        align-items: center;
    }

        .footer-col ul {
            text-align: center;
        }

    .footer-bottom {
        padding: 20px 25px;
    }

    .footer-bottom-content {
        font-size: 12px;
    }
}