/* Stili per la sezione FAQ */
.faq-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
  }
  
  .faq-column {
    flex: 1;
    max-width: calc(50% - 20px);
  }
  
  .faq-item {
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
  
  .faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
  }
  
  .faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-right: 20px;
    transition: color 0.3s ease;
  }
  
  .faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
  }
  
  .faq-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    color: #00B4C3;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  
  .faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
  }
  
  .faq-item.active .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
  }
  
  .faq-item.active .faq-icon .fa-minus {
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: rotate(0);
    transform: translate(-50%, -50%);
  }
  
  .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 1000px; /* Valore arbitrariamente alto */
    border-top: 1px solid #f0f0f0;
  }
  
  .faq-answer p {
    margin: 0;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-question {
    background-color: #f8f9fa;
  }
  
  .faq-item.active .faq-question h3 {
    color: #00B4C3;
  }
  
  /* Animazioni per migliorare l'esperienza utente */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .faq-item.active .faq-answer {
    animation: fadeIn 0.4s ease-out;
  }
  
  /* Effetto pulsazione per indicare cliccabilità */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 180, 195, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(0, 180, 195, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 180, 195, 0);
    }
  }
  
  .faq-item:not(.active):hover {
    animation: pulse 2s infinite;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
      gap: 20px;
    }
    
    .faq-column {
      max-width: 100%;
    }
    
    .faq-question h3 {
      font-size: 16px;
    }
    
    .faq-answer p {
      font-size: 14px;
    }
    
    .faq-question {
      padding: 15px;
    }
    
    .faq-item.active .faq-answer {
      padding: 15px;
    }
  }