h1.page-title {
    text-align: center;
}

.webform-submission-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 69, 115, 0.15);
  border: 1px solid rgba(0, 69, 115, 0.1);
}

/* Elemento a larghezza intera */
.form-full-width {
  width: 100%;
}

/* Elemento a metà larghezza */
.form-half-width {
  width: calc(50% - 10px);
}

/* Gestione row break */
.form-row-break {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  visibility: visible;
  display: block;
  clear: both;
}

/* Layout responsive */
@media (max-width: 768px) {
  .form-half-width {
    width: 100%;
  }
}

/* Resto del CSS rimane invariato come nel documento originale */
.webform-submission-form label {
  font-size: 11.85px;
  color: #707173;
  font-weight: normal;
  display: block;
  margin-bottom: 5px;
}

.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"] {
  width: 100%;
  max-width: 100%;
  border: none;
  background: none;
  border-bottom: 1px solid #004573;
  padding: 8px 0;
  font-size: 14px;
  transition: border-color 0.3s;
}

.webform-submission-form select {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 1px solid #004573;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23004573' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.webform-submission-form textarea {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #004573;
  background: none;
  height: 28px;
  resize: none;
  padding: 8px 0;
  font-size: 14px;
  transition: height 0.3s;
}

.webform-submission-form textarea:focus {
  height: 80px;
}

.webform-submission-form input:focus,
.webform-submission-form select:focus,
.webform-submission-form textarea:focus {
  outline: none;
  border-bottom: 2px solid #004573;
}

.webform-submission-form .form-type-checkbox {
  display: flex;
  align-items: center;
}

.webform-submission-form input[type="checkbox"] {
  margin-right: 10px;
}

.webform-submission-form .webform-button--submit {
  background: #004573;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin: 20px auto 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.webform-submission-form .webform-button--submit:hover {
  background: #003558;
  transform: translateY(-2px);
}

.form-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.webform-submission-form .captcha {
  width: 100%;
  margin: 20px 0;
}