    /* Stile specifico per la pagina di benvenuto */
    #welcome-header {
      text-align: center;
      padding: 100px 1rem 40px;
      color: #1e293b;
    }
    #welcome-header h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    #welcome-header p {
      font-size: 1.25rem;
      max-width: 600px;
      margin: 0 auto;
      color: #475569;
      line-height: 1.5;
    }

/* Stile logo nella pagina di benvenuto */
#welcome-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
  height: auto;
}

/* ===== Modulo Contatti ===== */
#contact-section {
  text-align: center;
  padding: 50px 1rem 40px;
  color: #1e293b;
}

#contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#contact-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #475569;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: white;
  color: #1e293b;
}

/* Bottone */
.quiz-button {
  display: inline-block;
  text-align: center;
  padding: 0.6rem 1rem;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  border: none;
}

.quiz-button:hover {
  background: #2563eb;
}

/* Responsive */
@media (max-width: 600px) {
  .quiz-title {
    font-size: 1.2rem;
  }

  .quiz-description {
    font-size: 0.95rem;
  }

  .quiz-button {
    font-size: 0.95rem;
    padding: 0.5rem 0.9rem;
  }
}

