/* ==================== RESET BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #121212; /* Sfondo scuro */
    color: #e0e0e0; /* Testo grigio chiaro */
    line-height: 1.6;
    overflow-x: hidden; /* Previene lo scroll orizzontale */
}


/* ==================== HEADER ==================== */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    background-color: rgba(30, 30, 30, 0.9); /* Sfondo grigio scuro con trasparenza */
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px); /* Effetto vetro smerigliato */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Bordo inferiore */
}

/* LOGO */
.logo {
    height: auto; /* Altezza automatica */
    display: block;
    margin: 0 auto;
}

/* Nascondi il logo mobile di default */
.logo-corto {
    display: none;
}

/* Mostra il logo desktop di default */
.logo-lungo {
    display: block;
    max-width: 550px; /* Larghezza massima per desktop */
    width: 100%; /* Adatta la larghezza al container */
    height: auto; /* Mantiene le proporzioni */
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.2)); /* Ombra soft */
    transition: all 0.3s ease;
}

/* Stile hover per il logo desktop */
.logo-lungo:hover {
    filter: drop-shadow(0 2px 8px rgba(0, 123, 255, 0.4)); /* Ombra più marcata al passaggio del mouse */
    transform: scale(1.05); /* Leggero ingrandimento */
}

/* ==================== NAVIGATION MENU ==================== */
.nav-container {
    width: 100%; /* Occupa tutta la larghezza disponibile */
    background-color: rgba(35, 35, 35, 0.9); /* Sfondo leggermente più chiaro rispetto all'header */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Bordo superiore */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Bordo inferiore */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Ombra marcata */
}

.nav-menu {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem; /* Spazio tra i link */
}

.nav-menu ul li a {
    text-decoration: none;
    color: #e0e0e0; /* Testo grigio chiaro */
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #007bff; /* Testo blu al passaggio del mouse */
}

/* Evidenziazione della voce attiva */
.nav-menu ul li.active a {
    color: #007bff; /* Colore evidenziato */
    text-decoration: underline;
    font-weight: bold;
}

/* ==================== MOBILE MENU ==================== */
.menu-toggle {
    display: none; /* Nascosto di default */
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1); /* Sfondo trasparente */
    border-radius: 8px;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 123, 255, 0.2); /* Sfondo blu al passaggio del mouse */
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: #e0e0e0; /* Colore delle barre */
    margin: 3px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ==================== MOBILE STYLES ==================== */
@media (max-width: 768px) {
    /* Nascondi il logo desktop su mobile */
    .logo-lungo {
        display: none;
    }

    /* Mostra il logo mobile su mobile */
    .logo-corto {
        display: block;
        max-width: 150px; /* Larghezza massima per mobile */
        width: 100%; /* Adatta la larghezza al container */
        height: auto; /* Mantiene le proporzioni */
        filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.2)); /* Ombra soft */
        transition: all 0.3s ease;
    }

    /* Stile hover per il logo mobile */
    .logo-corto:hover {
        filter: drop-shadow(0 2px 8px rgba(0, 123, 255, 0.4)); /* Ombra più marcata al passaggio del mouse */
        transform: scale(1.05); /* Leggero ingrandimento */
    }

    .menu-toggle {
        display: flex; /* Mostra il pulsante su mobile */
    }

    .nav-container {
        position: fixed; /* Cambiato da absolute a fixed */
        top: 110px; /* Aumenta questo valore per spostare la tendina più in basso */
        left: 0;
        width: 100%;
        height: calc(100vh - 120px); /* Regola l'altezza in base al nuovo valore di top */
        background: rgba(35, 35, 35, 0.98); /* Sfondo leggermente più chiaro rispetto all'header */
        z-index: 1001; /* Z-index più alto dell'header */
        overflow-y: auto;
        transform: translateX(-100%); /* Nasconde il menu inizialmente */
        transition: transform 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 1rem 0;
        border-radius: 0 0 8px 8px; /* Angoli arrotondati solo in basso */
    }

    .nav-container.active {
        transform: translateX(0); /* Mostra il menu */
    }

    .nav-menu {
        flex-direction: column;
        padding: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.5rem;
        opacity: 0;
        transition: opacity 0.3s ease 0.2s;
    }

    .nav-container.active .nav-menu ul {
        opacity: 1;
    }

    .nav-menu ul li a {
        padding: 1rem;
        display: block;
        text-align: center;
        font-size: 1.1rem;
    }
}

/* ==================== SEZIONI DELLA PAGINA ==================== */
section {
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 800px;
}

section h2 {
    color: #007bff; /* Testo blu per i titoli delle sezioni */
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

section p {
    color: #e0e0e0; /* Testo grigio chiaro */
    line-height: 1.8;
}

/* ==================== BOTTONI ==================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #007bff; /* Sfondo blu */
    color: #ffffff; /* Testo bianco */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0056b3; /* Sfondo blu scuro al passaggio del mouse */
}

/* ==================== FORM ==================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0; /* Testo grigio chiaro */
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1); /* Sfondo trasparente */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Bordo trasparente */
    border-radius: 5px;
    color: #e0e0e0; /* Testo grigio chiaro */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff; /* Bordo blu al focus */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1); /* Ombra blu al focus */
}

/* ==================== CARDS ==================== */
.card {
    background-color: rgba(30, 30, 30, 0.9); /* Sfondo grigio scuro con trasparenza */
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Ombra marcata */
}

.card h3 {
    color: #007bff; /* Testo blu per i titoli delle card */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #e0e0e0; /* Testo grigio chiaro */
    line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    background-color: rgba(20, 20, 20, 0.98);
    color: #b0b0b0;
    padding: 1.5rem 0 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

/* Logo desktop - visibile solo su mobile */
.footer-logo-lungo {
    display: none;
    max-width: 150px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

/* Logo mobile - visibile di default */
.footer-logo-corto {
    display: block;
    max-width: 150px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.footer-title {
    color: #d0d0d0;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.3rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: #555;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu ul li {
    margin-bottom: 0.4rem;
}

.footer-menu ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-menu ul li.active a {
    color: #d0d0d0;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #888;
}

/* ==================== MEDIA QUERIES ==================== */
@media (min-width: 769px) {
    /* Su desktop mostra logo desktop e nascondi mobile */
    .footer-logo-lungo {
        display: block;
    }
    .footer-logo-corto {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-logo-corto {
        max-width: 130px;
    }
    
    .footer-social {
        grid-column: span 2;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    color: #e0e0e0;
    padding: 1rem;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cookie-button:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-button {
        width: 100%;
    }
}

/* ==================== COOKIE POLICY SECTION ==================== */
.policy-container {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.policy-title {
    color: #007bff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.category-header h3 {
    color: #007bff;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-icon {
    font-size: 1.5rem;
    color: #007bff;
    filter: brightness(1.2);
}

.cookie-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cookie-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(45, 45, 45, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.cookie-item:hover {
    background: rgba(50, 50, 50, 0.8);
}

.cookie-icon {
    font-size: 1.4rem;
    color: #007bff;
    margin-top: 0.3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 2px rgba(0, 123, 255, 0.2));
}

.cookie-details strong {
    color: #f0f0f0;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-details p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.consent-notice {
    background: rgba(0, 123, 255, 0.15);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.notice-icon {
    color: #007bff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.consent-notice p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy-notice {
    background: rgba(0, 123, 255, 0.15);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.privacy-icon {
    color: #007bff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.privacy-notice p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Scrollable cookie section */
.scrollable-section {
    display: flex;
    flex-direction: column;
    height: 70vh;
    max-height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(25, 25, 25, 0.9);
}

.section-header {
    padding: 1.5rem;
    background: rgba(35, 35, 35, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem 1.5rem;
}

/* Stile barra di scorrimento */
.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #0069d9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        margin: 1rem;
        padding: 1.2rem;
        border-radius: 6px;
    }
    
    .policy-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .category-header {
        margin: 1.5rem 0 1rem;
    }
    
    .cookie-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .cookie-icon {
        font-size: 1.3rem;
    }
    
    .scrollable-section {
        height: 65vh;
        max-height: none;
    }
    
    .section-header {
        padding: 1rem 1.2rem;
    }
    
    .scrollable-content {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    .policy-title {
        font-size: 1.4rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .cookie-item {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-details strong {
        font-size: 1rem;
    }
    
    .cookie-details p {
        font-size: 0.85rem;
    }
    
    .scrollable-section {
        height: 75vh;
    }
}

#eventi,
#foto {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/* Aggiungi questo alla sezione mobile in home.css */
@media (max-width: 768px) {
    section#eventi:not(:has(.swiper-container-wrapper)) {
        min-height: calc(80vh - 120px); /* Aumenta l'altezza minima */
    }
}

  .faq-dropdown {
  margin-top: 25px;
}

/* Stili per i toggle FAQ */
.faq-toggle {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bordo bianco sottile */
    border-radius: 8px; /* Angoli arrotondati */
    padding: 12px 16px; /* Padding interno */
    width: 100%;
    outline: none;
    cursor: pointer;
    
    /* Colore e font del testo della domanda */
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    
    /* Layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* Transizione per hover */
    transition: all 0.3s ease;
}

/* Effetto hover sul toggle */
.faq-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Stile quando il toggle è attivo (FAQ aperta) */
.faq-toggle.active {
    border-color: rgba(255, 255, 255, 0.5);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid transparent;
}

/* Bordo per il contenuto della FAQ */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, border-color 0.4s ease-out;
    
    /* Bordo e sfondo per il contenuto */
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background-color: rgba(30, 30, 30, 0.5);
}

/* Quando il contenuto è visibile */
.faq-content.show {
    max-height: 400px;
    border-color: rgba(255, 255, 255, 0.2);
    padding: 16px;
}

/* Migliora la visibilità della freccia */
.faq-toggle .fa-chevron-down {
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-toggle.active .fa-chevron-down {
    color: rgba(255, 255, 255, 0.9);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, border-color 0.4s ease-out;
  
  /* Colore del testo, preso dalla variabile globale */
  color: var(--text-color,);
  font-size: 0.95rem;

  /* Stili del box di risposta */
  border: 1px solid transparent;
  border-radius: 5px;
}

.faq-content.show {
  max-height: 400px; /* Aumentato per contenere testi lunghi */
  margin-top: 10px;
}

.faq-content p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content ul {
  padding-left: 20px;
  margin-top: -5px;
  margin-bottom: 12px;
}

.faq-content li {
  margin-bottom: 8px;
}

/* ==================== FAQ ENHANCEMENTS ==================== */

/* Stile per il titolo principale */
#assistenza h1 {
    color: #007bff;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#assistenza h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    border-radius: 2px;
}

/* Miglioramenti per i toggle FAQ */
.faq-toggle {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.faq-toggle::before {
    content: '?';
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-toggle:hover::before {
    color: rgba(0, 123, 255, 0.3);
    transform: scale(1.2);
}

.faq-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 123, 255, 0.4);
}

.faq-toggle.active {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 179, 0.05));
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.faq-toggle span {
    margin-left: 24px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-toggle:hover span {
    color: #007bff;
}

.faq-toggle.active span {
    color: #007bff;
}

/* Miglioramenti per il contenuto FAQ */
.faq-content.show {
    border-color: rgba(0, 123, 255, 0.3);
    background: rgba(30, 30, 30, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stile per le parole evidenziate */
.faq-content strong {
    color: #007bff;
    position: relative;
    padding: 0 2px;
}

.faq-content strong::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 1px;
}

/* Miglioramenti per le liste */
.faq-content ul {
    list-style: none;
    padding-left: 0;
}

.faq-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.faq-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Stile per i titoli delle sezioni */
.section-spacer {
    color: #007bff;
    font-size: 1.8rem;
    padding: 1rem 0;
    margin-top: 3rem;
    border-bottom: 2px solid rgba(0, 123, 255, 0.3);
    position: relative;
}

.section-spacer::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: #007bff;
    border-radius: 1px;
}

/* Effetto gradiente per i link */
#assistenza a {
    color: #4da3ff;
    text-decoration: none;
    background: linear-gradient(90deg, transparent, transparent);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: all 0.3s ease;
    padding: 0 2px;
    border-radius: 2px;
}

#assistenza a:hover {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    background-size: 200% 100%;
    background-position: 0 0;
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Separatore tra le FAQ */
.faq-dropdown {
    position: relative;
}

.faq-dropdown:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1px;
}


/* Responsive design per FAQ */
@media (max-width: 768px) {
    #assistenza h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-spacer {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .faq-toggle span {
        font-size: 0.95rem;
    }
    
    .faq-content.show {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    #assistenza h1 {
        font-size: 1.7rem;
    }
    
    .section-spacer {
        font-size: 1.3rem;
    }
    
    .faq-toggle {
        padding: 10px 14px;
    }
    
    .faq-toggle span {
        margin-left: 20px;
    }
}