body {
  background-color: #1b1b1b;
}



.tesseramento-section {
  background-color: #fff;
  padding: 40px 15px;
  margin: 60px auto 50px auto;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  padding-top: 120px;
   
}
@media (max-width: 768px) {
    .tesseramento-section {
       margin-top: 240px;
    }
}
.termini-section {
  background-color: #fff;
  color:#000;
  padding: 40px 15px;
  margin: 70px auto 50px auto;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
   
}

.tesseramento-section h2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #000;
  margin-bottom: 20px;

}

.tesseramento-section input,
.tesseramento-section select,
.tesseramento-section button {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 16px;
}

.tesseramento-section button {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tesseramento-section button:hover {
  background-color: #444;
}

/* Radio button */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
}

/* Campi genitori */
.genitori-fields {
  margin-top: 15px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: none; /* inizialmente nascosto */
}

.genitori-fields input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Canvas firma */
#firma {
  width: 100%;
  height: 150px;
  border: 1px solid #ccc;
  border-radius: 8px;
  touch-action: none;
}

/* Desktop */
@media (min-width: 768px) {
  .tesseramento-section {
    padding: 40px;
    margin-top: 250px; /* margine superiore maggiore per menu */
  }
}


.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 10px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.accordion-content {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-top: 5px;
  background: #fff;
}
@media (max-width:600px){
  .accordion-content {
    max-height: 150px;
    font-size: 14px;
  }
}


