
@media only screen and (max-width: 768px) {
    /* Inserisci qui i tuoi stili CSS per la visualizzazione mobile */
    body {
        font-family: 'Open Sans', sans-serif;
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Impedisce lo scrolling orizzontale */
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700; /* Usa il peso 700 per i titoli */
    }

    p, a, li {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400; /* Usa il peso 400 per il testo normale */
    }

    header {
        background-color: #333;
        color: black;
        padding: 10px;
        text-align: center;
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #333;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .container-fluid {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .navbar-nav {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .navbar-brand {
        color: white;
        text-decoration: none;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        transition: all .3s;
        margin-right: 20px;
    }

    nav ul {
        list-style-type: none;
        display: flex;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    nav li {
        margin: 0 10px;
        cursor: pointer;
        text-align: center;
    }

    .navbar-brand:hover {
        transform: scale(1.1);
    }

    nav .nav-link {
        display: flex;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        transition: all .2s;
    }

    nav .nav-link:hover {
        background-color: #bebfbd;
        border-radius: 5px;
        transform: scale(1.1);
    }

    .logo {
        width: 270px;
        height: 160px;
        object-fit: contain;
        border-radius: 15px;
    }

    footer {
        padding: 10px;
        text-align: center;
        bottom: 0;
        margin-top: 10%;
        width: 100%;
        align-items: center;
        background: #333;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        margin-left: 20px;
        margin-right: 20px;
        align-items: center;
    }

    .footer-left {
        text-align: left;
    }

    .footer-center {
        text-align: center;
    }

    .footer-right {
        text-align: right;
    }

    .footer-left label,
    .footer-center label,
    .footer-right label {
        font-weight: bold;
        color: white;
    }

    a {
        text-decoration: none;
        color: red;
    }

    .social-icons {
        margin-right: 20px;
    }

    .social-icons li {
        display: inline-block;
        margin-right: 20px;
    }

    .social-icons li:last-child {
        margin-right: 0;
    }

    .social-icons li a {
        color: white;
        font-size: 20px;
    }
}