.flamencas-form-wrapper {
    background: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .flamencas-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .form-section {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-weight: bold;
    margin-top: 1rem;
  }
  
  input, select {
    padding: 0.5rem;
    font-size: 1rem;
    width: 100%;
  }
  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  button[type="submit"] {
    margin-top: 2rem;
    padding: 0.8rem;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .flamencas-form {
      flex-direction: column;
    }
  }
  
  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    background-color: #f4f4f4;
    transition: all 0.2s ease-in-out;
  }
  
  .checkbox-group input[type="checkbox"]:checked {
    background-color: black;
    border-color: black;
  }
  
  .checkbox-group input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
  }
  
  .checkbox-group input[type="checkbox"]:checked::after {
    display: block;
  }

  textarea {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    resize: vertical;
    border: 1px solid #ccc;
    margin-top: 0.5rem;
  }
  
  