<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ================== */
/* SEZIONE INVARIATA */
/* ================== */

body {
    font-family: 'Garet', sans-serif;
    line-height: 1.4;
    color: #333;
    background: linear-gradient(to bottom, #ffffff, #eff6ff);
    margin: 0;
    padding: 0;
    zoom: 1.10;
    overflow-x: hidden;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#page-wrapper {
    position: relative;
    overflow-x: hidden;
    height: 100%;
}

body.modal-open #page-wrapper {
    overflow-y: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Il logo ha altezza fissa a 75px */
.logo {
    height: 75px;
    margin-right: 10px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #2b3990;
}

/* Creiamo una linea blu sotto il nav usando uno pseudo-elemento, senza spostare i navlink */
nav {
    position: relative;
}
nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    height: 2px;
    background-color: #2b3990;
    z-index: -1;
}

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

nav ul li {
    margin-left: 30px;
}

/* Hover sui navlink: cambia colore e aggiunge ombra al testo */
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
nav ul li a:hover {
    color: #2b3990;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0 30px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.main {
    margin-top: -5rem;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000000;
}

.cta-buttons {
    display: flex;
    margin-bottom: 30px;
}

/* Hover piÃ¹ accattivante per i pulsanti: ingrandimento e ombra */
button {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Garet', sans-serif;
    transform-origin: center center; /* Evita lo spostamento del pulsante su mobile */
}
button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    background-color: #00aeef;
    color: white;
    width: 100%;
    max-width: 400px;
    white-space: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    padding: 10px 20px;
    line-height: 1.2;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Garet', sans-serif;
    transform-origin: center center; /* Anche qui */
}

.cta-primary:hover {
    background-color: #0099d6;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.graph-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-image: url('img/graph-icon.png');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.analysis-card-container {
    position: relative;
    margin-top: 50px;
    background-color: transparent;
}

.analysis-card {
    background-color: #2b3990;
    border-radius: 20px;
    padding: 15px;
    color: white;
    margin-top: 5em;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.analysis-card h2 {
    font-size: 14px;
    margin-bottom: 12px;
    margin-top: -0rem;
    text-align: left;
    font-weight: 600;
}

.analysis-features {
    display: flex;
    justify-content: space-between;
}

.feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 8px 12px;
    width: calc(33% - 10px);
    margin-right: 10px;
}

.feature:last-child {
    margin-right: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.feature span {
    font-size: 13px;
    font-weight: 700;
}

.arrow-icon {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 70px;
    height: 100px;
    z-index: 1;
}

.analysis-features .feature:first-child .feature-icon path {
    fill: white;
    stroke: white;
    stroke-width: 2;
}

.feature-icon[stroke="currentColor"] {
    stroke: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}

/* ================== */
/* FINE PARTE INVARIATA FINO A .analysis-features */
/* ================== */


/* ================================= */
/* SEZIONE "TEAM" IN POI (NUOVO CSS) */
/* ================================= */

.team {
    text-align: center;
    padding: 60px 0;
}

h2.tamtext {
    text-align: left;
    color: #5c6bc0;
    margin-bottom: 40px;
}

.teamtext {
    color: #2b3990;
    margin-top: 3.2rem;
}

/* Allineamento orizzontale e verticale dei cerchi e del testo */
.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Immagini cerchio: dimensioni massime reattive in desktop */
.team-member img {
    width: auto;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 50%;
    border: 3px solid #00aeef;
}

.team-member h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

.warning {
    padding: 60px 0;
}

.warning-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.warning-text {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.section-title {
    font-size: 18px;
    color: #525050;
    margin-bottom: 20px;
}

.warning-title {
    font-size: 36px;
    color: #2b3990;
    margin-bottom: 30px;
    line-height: 1.2;
}

.warning-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.warning-image {
    flex: 1;
    text-align: right;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.warning-image img {
    width: 75%;
    height: auto;
    margin-top: 50px;
}

.eliminate-conflict {
    padding: 60px 0;
}

.conflict-content, .benefits {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 130px;
}

.conflict-image, .cost-cutting-image {
    flex: 1;
    max-width: 50%;
}

.conflict-image img, .cost-cutting-image img {
    margin-top: 20px;
    width: 75%;
    height: auto;
    display: block;
}

.cost-cutting-image img {
    margin-left: auto;
}

.conflict-text, .benefits-content {
    flex: 1;
    max-width: 50%;
    padding-left: 40px;
}

.section-subtitle {
    font-size: 18px;
    color: #525050;
    margin-bottom: 10px;
}

.section-title, .benefits-title, .warning .section-title {
    font-size: 36px;
    color: #2b3990;
    margin-bottom: 20px;
}

.conflict-text p, .benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #00aeef;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    transform-origin: center center; /* Evita lo spostamento del pulsante su mobile */
}
.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    background-color: #0099d6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-icon {
    color: #00aeef;
    font-size: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

#costcutting {
    margin-top: 55px;
}

.certification {
    margin-top: -5rem;
    padding: 60px 0;
}

.certification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certification-image {
    flex: 1;
    max-width: 38%;
}

.certification-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.certification-text {
    flex: 1;
    max-width: 50%;
    padding-left: 150px;
}

.certification .section-subtitle {
    font-size: 18px;
    color: #525050;
    margin-bottom: 10px;
}

.certification .section-title {
    font-size: 36px;
    color: #2b3990;
    margin-bottom: 20px;
}

.certification p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.free-analysis {
    padding: 60px 0;
    margin-top: -3rem;
}

.free-analysis .container {
    max-width: 350px;
    margin: 0 auto;
}

.free-analysis .section-subtitle {
    font-size: 16px;
    color: #525050;
    margin-bottom: 10px;
    text-align: left;
}

.free-analysis .section-title {
    font-size: 24px;
    color: #2b3990;
    margin-bottom: 15px;
    text-align: left;
}

.free-analysis .section-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.free-analysis .analysis-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.free-analysis .analysis-price {
    font-size: 26px;
    font-weight: bold;
    color: #2b3990;
    margin-bottom: 5px;
}

.free-analysis .strikethrough {
    text-decoration: line-through;
    color: #999;
}

.free-analysis .gratis {
    font-size: 26px;
    font-weight: bold;
    color: #00aeef;
    margin-top: -10px;
    margin-bottom: 15px;
}

.free-analysis .analysis-title {
    font-size: 18px;
    color: #2b3990;
    margin-bottom: 15px;
}

.free-analysis .analysis-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.free-analysis .analysis-features li {
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    text-align: left;
    width: 100%;
}

.free-analysis .analysis-features li:before {
    content: "âœ“";
    color: #00aeef;
    position: absolute;
    left: 0;
    top: 0;
}

.free-analysis .analysis-features li span {
    display: block;
    width: 100%;
}

.free-analysis .cta-button {
    background-color: #00aeef;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    transform-origin: center center; /* Evita lo spostamento del pulsante su mobile */
}
.free-analysis .cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    background-color: #0099d6;
}

.titlebundle {
    margin-left: 7rem;
}

.site-footer {
    position: relative;
    margin-top: 14rem;
    padding: 40px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f9f9f9;
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.site-footer p {
    margin-bottom: 15px;
}

.site-footer a {
    color: #00aeef;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover per i link del footer */
.site-footer a:hover,
.legal-links a:hover {
    color: #0099d6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.legal-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.legal-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.legal-links a:hover {
    color: #0099d6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* ================= */
/* MODAL E COOKIE (INVARIATI) */
/* ================= */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5vh auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Stili generali per gli input (desktop) */
.modal-content .form-group input,
.modal-content .form-group select {
    font-size: 16px;
    height: 45px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.modal-content .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
}

.modal-content .cta-button {
    font-size: 18px;
    padding: 12px 20px;
    height: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    transform-origin: center center;
}
.modal-content .cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    background-color: #0099d6;
}

@media (max-height: 600px) {
    .modal-content {
        margin: 20px auto;
    }
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    text-align: center;
    color: #2b3990;
    margin-bottom: 20px;
}

.modal p {
    text-align: center;
    margin-bottom: 30px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px; /* ns riduzione da 20px a 10px */
    flex-wrap: wrap;
}

.form-group {
    width: 48%;
    margin-bottom: 15px;
}
.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0;
    flex: 1;
}

.modal {
    overflow-y: auto;
    max-height: 100vh;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* media query max-width 768px */
@media (max-width: 768px) {
    body {
        zoom: 1;
        background-color: white !important;
    }
    .container {
        padding: 0 15px;
    }
    header {
        flex-wrap: wrap;
    }
    .main {
        margin-top: 10px;
    }
    /* Mantenere la linea blu sotto il nav anche in mobile */
    nav {
        display: none;
        width: 100%;
        order: 3;
        position: relative;
    }
    nav::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -0.5rem;
        height: 2px;
        background-color: #2b3990;
        z-index: -1;
    }
    nav.active {
        display: block;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: flex;
    }
    .hero {
        flex-direction: column;
        padding: 20px 0;
        position: relative;
    }
    .hero-content,
    .hero-image {
        max-width: 100%;
    }
    .hero-image {
        display: none;
    }
    h1 {
        font-size: 36px;
        margin-top: 10px;
        position: relative;
        padding-bottom: 20px;
    }
    h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background-color: #2b3990;
    }
    .hero-content p {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .cta-container {
        position: relative;
        height: 50px;
        margin-bottom: 25px;
    }
    .cta-primary {
        font-size: 18px;
        padding: 15px 30px;
        width: 90%;
        position: absolute;
        left: 50%;
        top: 140%;
        transform: translate(-50%, -50%);
        z-index: 10;
        transform-origin: center center; /* Importante */
    }
    /* Manteniamo il translate al passaggio del puntatore */
    .cta-primary:hover {
        transform: translate(-50%, -50%) scale(1.03);
    }
    .analysis-section {
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    .analysis-card-container {
        background-color: #2b3990;
        padding: 30px 15px;
        margin-top: -25px;
        position: relative;
        z-index: 0;
        width: 100%;
    }
    .analysis-card-container2 {
        padding: 30px 0;
        margin-top: -25px;
        position: relative;
        z-index: 0;
    }
    .analysis-card {
        background-color: transparent;
        box-shadow: none;
        padding: 0 15px;
        margin-top: 6em;
    }
    .analysis-card h2 {
        color: white;
        text-align: left;
        margin-bottom: 30px;
        font-size: 18px;
        font-weight: bold;
        margin-top: -2rem;
    }
    .analysis-features {
        flex-direction: column;
    }
    .feature {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
        background-color: transparent;
        justify-content: flex-start;
        align-items: center;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }
    .feature span {
        color: white;
        font-size: 20px;
    }
    .arrow-icon {
        display: none;
    }
    .team-members {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
    .team-member {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .team-member img {
        width: auto !important;
        max-width: 150px !important;
        height: auto !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        object-position: 50% 50% !important;
    }
    .conflict-content {
        flex-direction: column;
    }
    .team-member {
        width: 45%;
        margin-bottom: 20px;
    }
    .team-member:last-child {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .conflict-image {
        order: 2;
        max-width: 100%;
        margin: 10px 0;
    }
    .conflict-image img {
        width: 49%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .conflict-text {
        text-align: left;
        order: 1;
    }
    .conflict-text .cta-button {
        display: block;
        margin: 20px auto 0;
        width: 90%;
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transform-origin: center center; /* Evita spostamenti anche qui */
    }
    .cost-cutting-image {
        max-width: 100%;
        margin: 10px 0;
    }
    .cost-cutting-image img {
        width: 49%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .certification-content {
        flex-direction: column-reverse;
    }
    .certification-image {
        max-width: 70%;
        margin: 20px auto 0;
    }
    .conflict-text, .benefits-content, .warning-text, .certification-text {
        flex: 1;
        max-width: 100%;
        padding-left: 0;
    }
    .benefits {
        margin-top: 60px;
    }
    .warning-content, .conflict-content, .benefits {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .warning-text, .conflict-text, .benefits-content,
    .warning-image, .conflict-image {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
        margin-top: -3rem;
    }
    .cost-cutting-image{
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
        margin-top: -4rem;
    }
    .warning-image, .conflict-image, .cost-cutting-image {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .cost-cutting-image img {
        width: 65%;
        margin: 0 auto;
    }
    .conflict-image img {
        width: 65%;
        margin-top: 4rem;
    }
    .warning-image img{
        margin-top: 2.5rem;
        width: 100%;
    }
    .eliminate-conflict {
        margin-top: -4rem;
    }
    .free-analysis .analysis-card {
        width: 100%;
        max-width: 350px;
    }
    .free-analysis .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .free-analysis .analysis-card {
        width: 90%;
        max-width: 350px;
    }
    .conflict-text .cta-button {
        display: block;
        margin: 30px auto 0;
        width: 100%;
        max-width: 400px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        font-size: 16px;
        padding: 15px 25px;
        line-height: 1.5;
        transform-origin: center center;
    }
    .free-analysis .section-title {
        font-size: 22px;
    }
    .free-analysis .analysis-price,
    .free-analysis .gratis {
        font-size: 24px;
    }
    .free-analysis, .site-footer {
        background-color: transparent !important;
        position: relative;
        z-index: 1;
    }
    .free-analysis::before, .site-footer::before,
    .free-analysis::after, .site-footer::after {
        content: none !important;
    }
    .free-analysis .container, .site-footer .container {
        background-color: transparent !important;
    }
    body, html, .container, main, section {
        background-color: transparent !important;
    }
    .site-footer {
        padding: 30px 0;
        margin-top: 0;
    }
    .footer-container {
        padding: 0 15px;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .legal-links a {
        margin: 5px 10px;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }
    .legal-links a:hover {
        color: #0099d6;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    .titlebundle {
        margin-left: 0;
    }
    .certification {
        margin-top: -6rem;
    }
}

/* Regola per dispositivi con puntatore "coarse" (tipici dei cellulari)
   che disabilita gli effetti di hover sui pulsanti */
@media (hover: none) and (pointer: coarse) {
    button:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Banner Cookie minimal e sue regole: invariato */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #2b3990;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
    z-index: 1100;
}

.cookie-content {
    display: inline-block;
}

.cookie-content p {
    display: inline;
    font-size: 14px;
    color: #333;
    margin: 0 10px 0 0;
}

.cookie-button {
    background-color: #2b3990;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Garet', sans-serif;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #1f2e74;
}

/* Ingrossiamo il pulsante "Accetta" su mobile (il doppio) */
@media (max-width: 768px) {
    #cookie-banner .cookie-button {
        font-weight: bold;
        font-size: 19px;      /* Da 14px a 28px */
        padding: 10px 20px;   /* Da 5px 10px a 10px 20px */
    }
}

@media (max-width: 768px) {
    #cookie-banner .cookie-content {
        display: block;
    }
    #cookie-banner p,
    #cookie-banner .cookie-button {
        display: block;
        margin: 5px auto;
        font-size: 16px;
        font-weight: bold;
    }
}

/* Modal in alto su mobile, senza margine top, e ridimensionato */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 0 auto; /* Nessun margine dall'alto */
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 15px;
    }
    .modal-content h2 {
        font-size: 20px;
    }
    .modal-content p,
    .modal-content label,
    .form-group input,
    .form-group select {
        font-size: 16px;
    }
}
</pre></body></html>