.faq-support-title {
    color: #292929;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.079px;
}

.faq-content {
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #212529;
    line-height: 1.6;
    word-break: break-word;
}

.faq-content-isolated {
    /* Reset base */
    all: initial;
    display: block;
    /* Dimensioni e overflow controllato */
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: clip;
    /* Tipografia base sicura */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #212529;
    /* Isolamento contesto */
    isolation: isolate;
    position: relative;
    z-index: 1;
    /* Gestione testo */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    /* Padding per leggibilit� */
    padding: 0.25rem 0;
}

    /* Reset per tutti gli elementi figli */
    .faq-content-isolated * {
        -webkit-user-select: none; /* Chrome, Safari, Opera */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        /* Previeni cambi di cursor indesiderati */
        cursor: auto;
        /* Previeni problemi di z-index */
        z-index: auto !important;
        isolation: isolate;
    }

    /* Media responsive */
    .faq-content-isolated img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 1rem 0;
        border-radius: 4px;
    }

    .faq-content-isolated video,
    .faq-content-isolated iframe {
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        margin: 1rem 0;
        border: none;
    }

    /* Tabelle responsive */
    .faq-content-isolated table {
        width: 100%;
        max-width: 100%;
        margin: 1rem 0;
        border-collapse: collapse;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

        .faq-content-isolated table th,
        .faq-content-isolated table td {
            padding: 0.75rem;
            border: 1px solid #dee2e6;
            text-align: left;
            white-space: normal;
        }

        .faq-content-isolated table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }

    /* Liste */
    .faq-content-isolated ul,
    .faq-content-isolated ol {
        margin: 1rem 0;
        padding-left: 2rem;
    }

    .faq-content-isolated li {
        margin: 0.5rem 0;
    }

    /* Heading */
    .faq-content-isolated h1 {
        font-size: 2rem;
        font-weight: 600;
        margin: 1.5rem 0 1rem;
        line-height: 1.2;
    }

    .faq-content-isolated h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin: 1.5rem 0 1rem;
        line-height: 1.3;
    }

    .faq-content-isolated h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 1.25rem 0 0.75rem;
        line-height: 1.4;
    }

    .faq-content-isolated h4 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 1.25rem 0 0.75rem;
        line-height: 1.4;
    }

    .faq-content-isolated h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 1rem 0 0.5rem;
        line-height: 1.5;
    }

    .faq-content-isolated h6 {
        font-size: 1rem;
        font-weight: 600;
        margin: 1rem 0 0.5rem;
        line-height: 1.5;
    }

    /* Paragrafi */
    .faq-content-isolated p {
        margin: 1rem 0;
        line-height: 1.6;
    }

    /* Link */
    .faq-content-isolated a {
        color: #0066cc;
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.2s;
    }

        .faq-content-isolated a:hover {
            color: #004499;
        }

    /* Code blocks */
    .faq-content-isolated pre {
        background-color: #f6f8fa;
        border-radius: 4px;
        padding: 1rem;
        margin: 1rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
        font-size: 0.9rem;
        line-height: 1.5;
        border: 1px solid #e1e4e8;
    }

    .faq-content-isolated code {
        font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
        font-size: 0.9em;
        padding: 0.2em 0.4em;
        background-color: #f6f8fa;
        border-radius: 3px;
    }

    .faq-content-isolated pre code {
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }

    /* Blockquote */
    .faq-content-isolated blockquote {
        margin: 1rem 0;
        padding: 0.5rem 1rem;
        border-left: 4px solid #0066cc;
        background-color: #f8f9fa;
        font-style: italic;
        border-radius: 0 4px 4px 0;
    }

    /* Linee orizzontali */
    .faq-content-isolated hr {
        border: none;
        border-top: 1px solid #dee2e6;
        margin: 2rem 0;
    }

/* Immagini allineate */
.faq-content-isolated img[align="left"] {
    margin-right: 1rem;
    margin-bottom: 1rem;
    float: left;
}

.faq-content-isolated img[align="right"] {
    margin-left: 1rem;
    margin-bottom: 1rem;
    float: right;
}

/* Clear float dopo immagini */
.faq-content-isolated::after {
    content: "";
    display: table;
    clear: both;
}

/* Pulsante "Apri una richiesta di assistenza" unificato in css/base.css (.topbar-new-ticket) */