<style>
  body {
    font-family: "Times New Roman", serif;
    background: #e6e6e6;
    padding: 20px;
  }

  .form-wrapper {
    max-width: 850px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border: 6px solid #2c3e50;
    outline: 5px solid #c0392b;
  }

  .step { display: none; }
  .step.active { display: block; }

  h2, h3 { text-align: center; }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    width: 140px;
    height: auto;
    object-fit: contain;
  }

  .section-title {
    font-weight: bold;
    margin-top: 20px;
  }

  .row { margin: 12px 0; line-height: 1.6; }

  input[type="text"],
  input[type="date"],
  input[type="number"],
  input[type="tel"] {
    border: none;
    border-bottom: 1.5px solid #000;
    background: transparent;
    outline: none;
    font-family: inherit;
  }

  .full { width: 100%; }

  input[type="checkbox"],
  input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid red;
    position: relative;
    cursor: pointer;
  }

  input:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: red;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
  }

  th {
    background: #1a2a5c;
    color: white;
    padding: 10px;
  }

  td {
    border: 1px solid #000;
    padding: 10px;
  }

  .btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
  }

  button {
    padding: 10px 20px;
    border: none;
    background: #2c3e50;
    color: white;
    cursor: pointer;
  }
</style>