        /* --- RESET E IMPOSTAZIONI DI BASE --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-size: 12px;
            font-family: Verdana, Arial, Helvetica, sans-serif;
            color: #525252;
            background-color: #FDC609; /* Giallo originale */
            line-height: 1.5;
        }

        a {
            outline: none;
            text-decoration: none;
            color: #654321;
        }

        a:hover {
            text-decoration: underline;
        }

        img {
            border: 0;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .clear {
            clear: both;
        }

        /* --- CONTENITORI --- */
        .wrapper {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        #header {
            background-color: #FFFF99; /* Sfondo chiaro header originale */
            padding: 15px 20px;
            font-family: Georgia, "Times New Roman", Times, serif;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        #logo {
            font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        }

        #logo h1 {
            font-size: 38px;
            margin: 0;
            padding: 0;
            line-height: 1.1;
            text-transform: capitalize;
        }

        #logo h1 a {
            color: #654321;
        }

        #logo p {
            font-size: 15px;
            color: #654321;
            margin-bottom: 8px;
        }

        .contact-links {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: bold;
        }

        .contact-item a {
            color: #654321;
        }

        /* --- NAVIGAZIONE (TOPNAV) --- */
        #topnav {
            font-family: Verdana, Arial, Helvetica, sans-serif;
            font-size: 13px;
        }

        #topnav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
            margin-bottom: 5px;
        }

        #topnav li a {
            padding: 3px 6px 5px 6px;
            color: #654321;
            background-color: #FFFF99;
            border-bottom: 1px solid #654321;
            display: inline-block;
        }

        #topnav li a:hover, 
        #topnav li.active a {
            color: #FF7F00;
            background-color: #FFFF99;
            border-bottom-color: #FDC609;
        }

        #topnav li a.special {
            color: #FF0004 !important;
            font-weight: bold;
        }

        /* --- SEZIONE LATEST (FOTO E CITAZIONI) --- */
        #latest {
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            background-color: #FDC609;
        }

        #latest .fl_left {
            flex: 1 1 600px;
            max-width: 650px;
        }

        #latest .fl_right {
            flex: 1 1 380px;
            padding: 15px;
            background-color: #FDC609;
            background-image: url('images/decorations.png');
            background-repeat: no-repeat;
        }

        #latest .fl_right p {
            line-height: 2em;
            font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
            font-size: 16px;
            text-align: right;
            color: #654321;
        }

        /* --- SEZIONE INTRO (TESTO CENTRALE) --- */
        #intro {
            padding: 25px 0 15px 0;
        }

        #intro .intro-box {
            width: 100%;
            padding: 30px 20px;
            font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
            text-align: center;
            background-color: #FDC609;
            background-image: url('images/background.jpg');
            background-repeat: repeat;
        }

        #intro p.dim {
            font-size: 18px;
            color: #654321;
            margin-bottom: 8px;
            font-style: italic;
            line-height: 1.6;
        }

        #intro p.dim strong {
            font-weight: bold;
        }

        /* --- COPYRIGHT & FOOTER --- */
        #copyright {
            padding: 20px;
            color: #654321;
            background-color: #FFFF66; /* Sfondo footer originale */
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 12px;
        }

        #copyright a {
            color: #654321;
        }

        .shinystat-container {
            text-align: center;
            padding: 15px 0;
            background-color: #FDC609;
        }

        /* --- MEDIA QUERIES (ADATTABILITÀ PER MOBILE) --- */
        @media (max-width: 900px) {
            #header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            #topnav {
                width: 100%;
            }

            #topnav ul {
                justify-content: flex-start;
            }

            #latest .fl_left, 
            #latest .fl_right {
                flex: 1 1 100%;
                max-width: 100%;
            }

            #latest .fl_right p {
                text-align: left;
            }
        }

        @media (max-width: 600px) {
            #logo h1 {
                font-size: 30px;
            }

            #topnav ul {
                flex-direction: column;
                gap: 5px;
            }

            #topnav li a {
                display: block;
                width: 100%;
                border-bottom: 1px solid #654321;
            }

            #intro p.dim {
                font-size: 15px;
            }

            #copyright {
                flex-direction: column;
                text-align: center;
            }
        }


/* --- STILI SPECIFICI CURRICULUM E UTILITY --- */
.cv-header-text {
    text-align: center;
    color: #654321;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.cv-header-text h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.cv-header-text .quote {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cv-photo {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.cv-photo img {
    border: 1px solid #654321;
    max-width: 100%;
    height: auto;
}

/* --- FORMATTAZIONE DOMANDE E RISPOSTE (METODO) --- */
.faq-item {
    margin-top: 20px;
    text-align: center;
}

.faq-item .question {
    font-weight: bold;
    color: #654321;
    margin-bottom: 5px;
}

.faq-item .answer {
    font-style: italic;
}




/* --- LISTA SERVIZI / UTENZA --- */
.services-list {
    list-style: none;
    margin: 20px auto 0 auto;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.services-list li {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 18px;
    color: #654321;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.services-list li::before {
    content: "•";
    color: #654321;
    font-weight: bold;
    position: absolute;
    left: 0;
}
/* --- MAPPA GOOGLE RESPONSIVE --- */
.map-container {
    margin: 20px auto;
    max-width: 600px;
    width: 100%;
    border: 2px solid #654321;
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}
/* --- LISTA ARTICOLI (PSICOLOGIA INFORMA) --- */
.articles-list {
    list-style: none;
    padding: 0;
    margin: 10px auto;
    max-width: 800px;
    text-align: left;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(101, 67, 33, 0.3);
}

.article-item:last-child {
    border-bottom: none;
}

.article-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.article-icons img {
    transition: transform 0.2s ease;
}

.article-icons a:hover img {
    transform: scale(1.15);
}

.article-text {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
}

.article-text a {
    color: #654321;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-text a:hover {
    color: #ff0004;
    text-decoration: underline;
}

/* --- INIZIATIVE ED EVENTI --- */
.event-featured {
    margin-top: 15px;
    font-style: normal;
}

.event-date {
    font-size: 18px;
    font-weight: bold;
    color: #654321;
    margin-bottom: 5px;
}

.event-title {
    font-size: 20px;
    margin: 5px 0;
}

.red-highlight {
    color: #FF0004;
    font-weight: bold;
}

.event-details {
    font-size: 16px;
    color: #654321;
    line-height: 1.5;
}

.event-phone {
    color: #654321;
    text-decoration: none;
    font-weight: bold;
}

.event-phone:hover {
    color: #FF0004;
}

/* ARCHIVIO */
.archive-title {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 24px;
    color: #654321;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: bold;
}

.archive-item {
    margin-bottom: 25px;
}

.archive-item-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.archive-item-title.underline {
    text-decoration: underline;
}

.archive-item-text {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 18px;
    color: #654321;
    font-style: italic;
    line-height: 1.6;
}
/* --- RECENSIONI --- */
.google-link {
    margin-top: 15px;
    font-size: 16px;
    color: #654321;
}

.google-link a {
    color: #ff0004;
    text-decoration: underline;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
}

.review-card {
    flex: 1 1 400px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.review-card h3 {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 20px;
    color: #654321;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(101, 67, 33, 0.3);
    padding-bottom: 8px;
}

.iframe-container {
    width: 100%;
    height: 480px;
    border: 1px solid #d0c0a0;
    border-radius: 4px;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* --- CONTATTI --- */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-highlight {
    color: #654321;
    font-weight: bold;
    text-decoration: underline;
}

.contact-highlight:hover {
    color: #ff0004;
}

.contact-details .note {
    font-size: 16px;
    opacity: 0.9;
}