body {
    font-family: Arial, sans-serif;
    background: #fff;
  }

  #form-container {
    padding: 5px;
    border-radius: 6px;
    box-shadow: none;
    margin: 30px auto;
    max-width: 1000px;
    background-color: #fff;
  }

  fieldset {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
  }

  legend {
    font-weight: bold;
    font-size: 16px;
    color: #30aa95;
    padding: 0 5px;
  }

  .three-col-grid {
    margin-top: 10px;
  }

  label {
    font-size: 14px;
    color: #333;
  }

  input, select, textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    width: 100%;
  }

  button {
    background-color: #30aa95;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
    margin-right: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #2c9b88;
  }

  h4 {
    margin-top: 20px;
    color: #30aa95;
  }


input, select {
    box-sizing: border-box;
    height: 38px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }


.three-col-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .three-col-grid label {
      display: flex;
      flex-direction: column;
    }


.three-col-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .three-col-grid label {
      display: flex;
      flex-direction: column;
    }
    .three-col-grid textarea {
      grid-column: span 3;
    }
