
    :root {
      --ink: #111;
      --muted: #555;
      --line: #222;
      --paper: #fff;
      --accent: #000;
      --success: #176b3a;
      --error: #a32222;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      background: #ececec;
      color: var(--ink);
      font-family: "Noto Sans Devanagari", Arial, sans-serif;
    }

    .page {
      width: min(100%, 1050px);
      margin: 24px auto;
      padding: 18px;
    }

    .paper {
      background: var(--paper);
      border: 3px solid #111;
      outline: 1px solid #111;
      outline-offset: -9px;
      padding: 52px 48px 42px;
      box-shadow: 0 8px 28px rgba(0,0,0,.12);
    }

    header {
      text-align: center;
      position: relative;
      padding-bottom: 20px;
    }

    .top-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      margin: -25px 0 15px;
    }

    .brand {
      display: grid;
      grid-template-columns: 150px 1fr 150px;
      align-items: center;
      gap: 16px;
    }

    .logo-wrap img {
      width: 125px;
      height: 125px;
      object-fit: contain;
      border-radius: 50%;
    }

    .title h1 {
      margin: 0;
      font-size: clamp(27px, 4vw, 43px);
      font-weight: 800;
      line-height: 1.15;
    }

    .title h2 {
      margin: 5px 0 7px;
      font-family: Arial, sans-serif;
      font-size: clamp(17px, 2.2vw, 26px);
      font-weight: 700;
    }

    .title .address,
    .title .email {
      font-size: 14px;
      margin: 2px 0;
    }

    .photo-box {
      width: 120px;
      height: 150px;
      border: 1px solid #333;
      margin-left: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .photo-box span { font-size: 14px; color: #333; }

    .photo-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
    }

    .photo-box input {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
    }

    .form-title {
      display: inline-block;
      background: #050505;
      color: #fff;
      border-radius: 9px;
      padding: 9px 35px;
      font-size: 24px;
      font-weight: 800;
      margin: 10px 0 12px;
      box-shadow: 0 2px 0 #777;
    }

    .section-title {
      text-align: center;
      font-size: 18px;
      font-weight: 800;
      margin: 20px 0 15px;
    }

    .intro {
      font-size: 16px;
      line-height: 1.8;
      margin: 0 0 15px;
      text-align: center;
    }

    .section {
      border-top: 1.5px solid #111;
      padding-top: 14px;
      margin-top: 20px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 24px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .field.full { grid-column: 1 / -1; }

    label {
      font-size: 14px;
      font-weight: 700;
    }

    label .en {
      font-family: Arial, sans-serif;
      font-weight: 500;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid #777;
      border-radius: 4px;
      padding: 9px 10px;
      font: inherit;
      background: #fff;
      color: #111;
    }

    textarea {
      min-height: 82px;
      resize: vertical;
    }

    .member-type {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 5px;
    }

    .radio-card {
      border: 1px solid #777;
      border-radius: 5px;
      padding: 9px;
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      cursor: pointer;
    }

    .radio-card input { width: auto; }

    .recommendation {
      border-top: 1.5px solid #111;
      margin-top: 22px;
      padding-top: 15px;
    }

    .office {
      border-top: 1.5px solid #111;
      margin-top: 22px;
      padding-top: 15px;
    }

    .actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 25px;
      flex-wrap: wrap;
    }

    button {
      border: 0;
      background: #050505;
      color: #fff;
      padding: 12px 30px;
      border-radius: 6px;
      font: inherit;
      font-weight: 800;
      cursor: pointer;
    }

    button:hover { opacity: .88; }
    button:disabled { opacity: .55; cursor: wait; }

    .reset {
      background: #777;
    }

    .status {
      text-align: center;
      min-height: 24px;
      margin-top: 12px;
      font-weight: 700;
    }

    .success { color: var(--success); }
    .error { color: var(--error); }

    .required { color: #a00000; }

    .small-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 6px;
    }

    @media (max-width: 760px) {
      .page { padding: 8px; margin: 8px auto; }
      .paper { padding: 42px 18px 30px; }
      .brand { grid-template-columns: 1fr; }
      .logo-wrap, .photo-box { margin: 0 auto; }
      .top-meta { font-size: 10px; }
      .grid { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .member-type { grid-template-columns: 1fr; }
      .title h1 { font-size: 28px; }
      .title h2 { font-size: 18px; }
    }

    @media print {
      body { background: white; }
      .page { width: 100%; margin: 0; padding: 0; }
      .paper { box-shadow: none; }
      .actions, .status { display: none; }
      input, select, textarea { border: 0; border-bottom: 1px dotted #555; border-radius: 0; }
    }
  