.elementor-1154 .elementor-element.elementor-element-667a4a9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-495a5e4 *//* =========================================
   CSS PAGINA FAQ (Fix Overflow & Override Tema)
   ========================================= */

.lx-faq-page {
    padding: 100px 0 100px;
    background-color: #fafbfd;
    overflow-x: hidden !important; /* FIX: Impedisce in modo assoluto l'allargamento della pagina */
    width: 100%;
}

/* Sicurezza extra per i padding */
.lx-faq-page * {
    box-sizing: border-box !important;
}

/* --- GRID A DUE COLONNE CON AREE (Desktop) --- */
.lx-faq-split-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 30px 80px; 
    align-items: start;
    grid-template-areas: 
        "header accordion"
        "cta accordion";
}

.lx-faq-title-area { grid-area: header; }
.lx-faq-accordion-area { grid-area: accordion; }
.lx-faq-cta-area { grid-area: cta; }

/* --- COLONNA SINISTRA (Testi e CTA) --- */
.lx-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #e6f0f7;
    color: #016096;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.lx-faq-title-area .lx-title-main {
    font-size: 3.2rem;
    font-weight: 800;
    color: #016096;
    margin-bottom: 20px;
    line-height: 1.1;
}

.lx-faq-title-area .lx-highlight {
    font-weight: 900;
    color: #016096;
}

.lx-faq-title-area .lx-subtitle-main {
    color: #6e6e73;
    font-size: 1.1rem;
    line-height: 1.6;
}

.lx-faq-inline-cta {
    background: #e6f0f7;
    padding: 35px 30px;
    border-radius: 25px;
    border: 1px solid rgba(1, 96, 150, 0.05);
}

.lx-faq-inline-cta h3 {
    color: #016096;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.lx-faq-inline-cta p {
    color: #003a5c;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.lx-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 16px 25px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.lx-btn-whatsapp svg {
    width: 26px !important;
    height: 26px !important;
    flex-shrink: 0 !important; /* Impedisce che venga schiacciata */
    display: block !important;
}

/* --- COLONNA DESTRA (Accordion) --- */
.lx-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lx-faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FIX: Neutralizziamo il tema per il bottone delle domande */
.lx-faq-question {
    width: 100%;
    background: transparent !important; /* Rimuove il blu forzato del tema */
    border: none !important;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap !important;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1f !important; /* Rende il testo scuro su fondo bianco */
    text-align: left;
    white-space: normal !important; /* FONDAMENTALE: permette al testo di andare a capo */
    transition: color 0.3s ease;
}

.lx-faq-question span {
    flex: 1 1 auto;
    min-width: 0; 
    padding-right: 20px;
    line-height: 1.4;
    word-wrap: break-word !important; /* Costringe le parole lunghe a spezzarsi */
    white-space: normal !important;
}

.lx-faq-question svg {
    flex: 0 0 24px; 
    width: 24px;
    height: 24px;
    display: block; 
    color: #016096;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 2px;
}

.lx-faq-item.active .lx-faq-question {
    color: #016096 !important;
}

.lx-faq-item.active .lx-faq-question svg {
    transform: rotate(45deg);
}

.lx-faq-answer {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lx-faq-answer p {
    padding: 0 30px 30px;
    margin: 0;
    color: #6e6e73;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- RESPONSIVE MOBILE (< 900px) --- */
@media (max-width: 900px) {
    .lx-faq-split-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "accordion"
            "cta";
        gap: 40px;
    }
    
    .lx-faq-page {
    padding: 40px 0 100px;
    background-color: #fafbfd;
    overflow-x: hidden !important; /* FIX: Impedisce in modo assoluto l'allargamento della pagina */
    width: 100%;
    }
    
    .lx-faq-title-area { text-align: flex-start; }
    .lx-faq-title-area .lx-title-main { font-size: 2.5rem; }
    .lx-faq-title-area .lx-subtitle-main { margin: 0 auto; }
    
    .lx-faq-question { padding: 20px; font-size: 1.05rem; }
    .lx-faq-question span { padding-right: 15px; }
    .lx-faq-answer p { padding: 0 20px 20px; }
    
    .lx-faq-cta-area { margin-top: 20px; }
}/* End custom CSS */