/* Event Details */
.event-details {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.target-audience, .event-center, .event-info {
    flex: 1 1 300px;
    margin: 10px;
}

.target-audience h2 {
    color: #0066ff;
    font-size: 24px; /* Dimensione del font */
    margin-bottom: 10px;
}

.event-info h3 {
    color: #0066ff;
    margin-bottom: 10px;
    text-align: right;
    font-size: 24px; /* Uniforme con h2 */
}

.event-info p {
    margin-bottom: 5px;
    text-align: right;
    font-size: 24px; /* Uniforme con h2 */
}

.capacity {
    background-color: #0066ff;
    color: #ffffff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 24px; /* Uniforme con h2 */
}

/* Programma */
.programma h2 {
    color: #800000;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px; /* Uniforme con h2 */
}

.session h3, .session-title {
    color: #990000;
    text-align: center;
    font-size: 24px; /* Uniforme con h2 */
}



        /* Container principale */
        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        /* Sezioni a tre colonne */
        .section-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .section-row > section {
            flex: 1 1 30%; /* Cresce, non restringe, base 30% */
            margin: 10px;
            background-color: #f1f1f1;
            padding: 20px;
            border-radius: 5px;
        }

        .section-row > section img.icon {
            width: 24px;
            vertical-align: middle;
            margin-right: 10px;
        }

        .section-row > section img.center-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto 10px auto;
        }

        .event-info p {
            font-size: 1.1em;
        }

        /* Programma */
        .schedule {
            background-color: #f1f1f1;
            padding: 20px;
            border-radius: 5px;
        }

        .session {
            margin-bottom: 20px;
        }

        .session h2 {
            font-size: 1.3em;
            color: #007BFF;
        }

        .speaker {
            margin-top: 10px;
            padding-left: 20px;
            border-left: 3px solid #007BFF;
        }

        .speaker p {
            font-style: italic;
        }

      ul {
            list-style-type: disc;
            margin-left: 40px;
        }

        ul ul {
            list-style-type: circle;
            margin-left: 20px;
        } /*  */

        /* Footer */
        footer {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #ddd;
            margin-top: 40px;
            color: #777;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .section-row > section {
                flex: 1 1 45%; /* Due colonne */
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            .container {
                padding: 20px;
            }

            .schedule {
                padding: 15px;
            }

            .section-row > section {
                flex: 1 1 100%; /* Una colonna */
                margin: 10px 0;
            }
        }


 /* Reset di base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Font e colori */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            padding: 20px;
        }

        h1, h2, h3, h4 {
            color: #0056b3;
            margin-bottom: 15px;
        }

        h1 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 10px;
        }

        h2 {
            font-size: 1.8em;
            border-bottom: 2px solid #0056b3;
            padding-bottom: 5px;
            margin-top: 30px;
        }

        h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .paragrafo {
            margin-bottom: 15px;
            text-align: justify;
        }

        em {
            color: #555;
        }